Strabon
view examples/teleios/discover_allRefinements.rq @ 1532:210bd063f842
[maven-release-plugin] copy for tag v3.2.11-temporals
author | Konstantina Bereta <Konstantina.Bereta@di.uoa.gr> |
---|---|
date | Thu Sep 22 16:53:04 2016 +0300 (2016-09-22) |
parents | 3980b4ac9276 |
children |
line source
1 # return the refinements took place for a hotspot
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 (strdf:transform(?hGeo, <http://www.opengis.net/def/crs/EPSG/0/4326>) AS ?geo) (GROUP_CONCAT(?refinement; separator=", ") AS ?refinements)
7 WHERE {
8 ?h noa:hasGeometry ?hGeo ;
9 noa:hasAcquisitionTime "TIMESTAMP"^^xsd:dateTime ;
10 noa:refinedBy ?refinement .
11 }
12 GROUP BY ?geo