Strabon

view examples/teleios/discover_coastlineRefinement.rq @ 1426:014379fdddf2

fixed the tests of geof:distance and geof:buffer, that had wrong results due to the
conversion of the resulting geometry to the srid 3857.
The results are validated using PostGIS, where in the case of buffer there are
small differences in the precision.
Moreover, in the case of BufferMetresTest, there was no point in having as distance
1m, because the geometry did not change, so i added 55000 metres instead (about 0.5 degrees).
author Stella Giannakopoulou <sgian@di.uoa.gr>
date Wed Sep 24 17:43:53 2014 +0300 (2014-09-24)
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 }