Strabon

diff examples/teleios/discover_seaInconsistency.rq @ 1453:2fac60132bc8

completed imlpementation of the period(timestamp,timestamp) function
author Konstantina Bereta <Konstantina.Bereta@di.uoa.gr>
date Wed Jan 14 13:12:30 2015 +0200 (2015-01-14)
parents 3980b4ac9276
children
line diff
     1.1 --- a/examples/teleios/discover_seaInconsistency.rq	Fri Sep 28 20:44:08 2012 +0300
     1.2 +++ b/examples/teleios/discover_seaInconsistency.rq	Wed Jan 14 13:12:30 2015 +0200
     1.3 @@ -1,9 +1,11 @@
     1.4  # discover hotspots that were deleted because they lie in sea
     1.5  PREFIX noa: <http://teleios.di.uoa.gr/ontologies/noaOntology.owl#> 
     1.6  PREFIX strdf: <http://strdf.di.uoa.gr/ontology#> 
     1.7 +PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
     1.8  
     1.9  SELECT ?h (strdf:transform(?hGeo, <http://www.opengis.net/def/crs/EPSG/0/4326>) AS ?geo) ("Sea inconsistency" as ?refinement)
    1.10  WHERE { 
    1.11      ?h   noa:hasGeometry ?hGeo ;
    1.12 +         noa:hasAcquisitionTime "TIMESTAMP"^^xsd:dateTime ;
    1.13           noa:refinedBy noa:seaInconsistency .
    1.14  }