Strabon
changeset 1100:6757a6a3531c
Added ehCoveredBy test.
author | Panayiotis Smeros <psmeros@di.uoa.gr> |
---|---|
date | Fri Apr 26 20:07:15 2013 +0300 (2013-04-26) |
parents | 4456aa45bba4 |
children | 1832661cb95e |
files | testsuite/src/test/resources/geoSPARQL/EhSpatialRelationsTest/EhCoveredByTest.rq testsuite/src/test/resources/geoSPARQL/EhSpatialRelationsTest/EhCoveredByTest.srx |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/testsuite/src/test/resources/geoSPARQL/EhSpatialRelationsTest/EhCoveredByTest.rq Fri Apr 26 20:07:15 2013 +0300 1.3 @@ -0,0 +1,10 @@ 1.4 +SELECT ?x ?y 1.5 +WHERE 1.6 +{ 1.7 +?x geo:hasGeometry ?geom1. 1.8 +?geom1 geo:asWKT ?g1. 1.9 + 1.10 +?y geo:hasGeometry ?geom2. 1.11 +?geom2 geo:asWKT ?g2. 1.12 + 1.13 +FILTER((geof:ehCoveredBy(?g1, ?g2)))} 1.14 \ No newline at end of file
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/testsuite/src/test/resources/geoSPARQL/EhSpatialRelationsTest/EhCoveredByTest.srx Fri Apr 26 20:07:15 2013 +0300 2.3 @@ -0,0 +1,18 @@ 2.4 +<?xml version='1.0' encoding='UTF-8'?> 2.5 +<sparql xmlns='http://www.w3.org/2005/sparql-results#'> 2.6 + <head> 2.7 + <variable name='x'/> 2.8 + <variable name='y'/> 2.9 + </head> 2.10 + <results> 2.11 + <result> 2.12 + <binding name='y'> 2.13 + <uri>http://example.org#B</uri> 2.14 + </binding> 2.15 + <binding name='x'> 2.16 + <uri>http://example.org#A</uri> 2.17 + </binding> 2.18 + </result> 2.19 + </results> 2.20 +</sparql> 2.21 +