Strabon

view examples/teleios/discover_coastlineRefinement.rq @ 711:9111700fb49f

minor addition in ValueJoinOptimizer
author Konstantina
date Fri Nov 16 18:36:40 2012 +0200 (2012-11-16)
parents 3980b4ac9276
children
line source
1 # discover hotspots that partially overlap with the coastline
2 PREFIX noa: <http://teleios.di.uoa.gr/ontologies/noaOntology.owl#>
3 PREFIX strdf: <http://strdf.di.uoa.gr/ontology#>
4 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
6 SELECT ?h (strdf:transform(?hGeo, <http://www.opengis.net/def/crs/EPSG/0/4326>) AS ?geo) ("Coastline refinement" as ?refinement)
7 WHERE {
8 ?h noa:hasGeometry ?hGeo ;
9 noa:hasAcquisitionTime "TIMESTAMP"^^xsd:dateTime ;
10 noa:refinedBy noa:coastlineRefinement .
11 }