Strabon
changeset 1095:613675356223
Added ehContains test.
author | Panayiotis Smeros <psmeros@di.uoa.gr> |
---|---|
date | Fri Apr 26 19:29:37 2013 +0300 (2013-04-26) |
parents | 853de4f2d3d9 |
children | 3ae814d8b023 |
files | testsuite/src/test/resources/geoSPARQL/EhSpatialRelationsTest/EhContainsTest.rq testsuite/src/test/resources/geoSPARQL/EhSpatialRelationsTest/EhContainsTest.srx |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/testsuite/src/test/resources/geoSPARQL/EhSpatialRelationsTest/EhContainsTest.rq Fri Apr 26 19:29:37 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((?x != ?y) && (geof:sfContains(?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/EhContainsTest.srx Fri Apr 26 19:29:37 2013 +0300 2.3 @@ -0,0 +1,42 @@ 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#A</uri> 2.14 + </binding> 2.15 + <binding name='x'> 2.16 + <uri>http://example.org#B</uri> 2.17 + </binding> 2.18 + </result> 2.19 + <result> 2.20 + <binding name='y'> 2.21 + <uri>http://example.org#G</uri> 2.22 + </binding> 2.23 + <binding name='x'> 2.24 + <uri>http://example.org#B</uri> 2.25 + </binding> 2.26 + </result> 2.27 + <result> 2.28 + <binding name='y'> 2.29 + <uri>http://example.org#E</uri> 2.30 + </binding> 2.31 + <binding name='x'> 2.32 + <uri>http://example.org#D</uri> 2.33 + </binding> 2.34 + </result> 2.35 + <result> 2.36 + <binding name='y'> 2.37 + <uri>http://example.org#D</uri> 2.38 + </binding> 2.39 + <binding name='x'> 2.40 + <uri>http://example.org#E</uri> 2.41 + </binding> 2.42 + </result> 2.43 + </results> 2.44 +</sparql> 2.45 +