Strabon

annotate examples/teleios/discover_clcInconsistency.rq @ 1489:6d3b0882fb45

[maven-release-plugin] prepare for next development iteration
author Babis Nikolaou <charnik@di.uoa.gr>
date Wed Mar 11 20:00:42 2015 +0200 (2015-03-11)
parents 3980b4ac9276
children
rev   line source
charnik@569 1 # discover hotspots that lie in an area with an inappropriate CLC code with respect to fires
charnik@569 2 PREFIX noa: <http://teleios.di.uoa.gr/ontologies/noaOntology.owl#>
charnik@569 3 PREFIX strdf: <http://strdf.di.uoa.gr/ontology#>
charnik@571 4 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
charnik@569 5
charnik@569 6 SELECT ?h (strdf:transform(?hGeo, <http://www.opengis.net/def/crs/EPSG/0/4326>) AS ?geo) ("Corine Land Cover inconsistency" as ?refinement)
charnik@569 7 WHERE {
charnik@569 8 ?h noa:hasGeometry ?hGeo ;
charnik@571 9 noa:hasAcquisitionTime "TIMESTAMP"^^xsd:dateTime ;
charnik@569 10 noa:refinedBy noa:clcInconsistency .
charnik@569 11 }