Strabon
view examples/teleios/deleteSeaHotspots.rq @ 1449:373b66ce4884
tests for bug #78
author | Stella Giannakopoulou <sgian@di.uoa.gr> |
---|---|
date | Thu Dec 18 18:23:59 2014 +0200 (2014-12-18) |
parents | 8251379cab30 |
children |
line source
1 PREFIX noa: <http://teleios.di.uoa.gr/ontologies/noaOntology.owl#>
2 PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
3 PREFIX strdf: <http://strdf.di.uoa.gr/ontology#>
4 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
5 PREFIX gag: <http://geo.linkedopendata.gr/greekadministrativeregion/ontology#>
7 INSERT {?h noa:isDiscarded "1"^^xsd:int ;
8 noa:refinedBy noa:seaInconsistency .
9 }
10 WHERE {
11 ?h noa:hasAcquisitionTime "TIMESTAMP"^^xsd:dateTime ;
12 noa:producedFromProcessingChain "PROCESSING_CHAIN"^^xsd:string ;
13 noa:isDerivedFromSensor "SENSOR"^^xsd:string .
14 OPTIONAL {
15 ?h gag:hasMunicipality ?muni .
16 }
17 FILTER(!bound(?muni)) .
18 }