Hi there, I've recently started experimenting with Rya on MongoDB. I've been able to load geospatial data into MongoDB. The rya__triples and rya_rya_geo collections are populated without issues.
However, when I try to use GeoSPARQL functions via the provided SPARQL endpoint implementation (web.rya), I get an empty result-set. I've also tried to query using RDF4J directly, but same result. I'm using the latest master (4.0.0-SNAPSHOT) and I've built the .war with: mvn clean install -P mongodb -P geoindexing -DskipTests Env config (relevant part): sc.useMongo=true sc.use_geo=true sc.geo.predicates=http://www.opengis.net/ont/geosparql#asWKT mongo.db.collectionprefix=rya_ mongo.geo.maxdist=1e-10 The test data: @prefix geo: <http://www.opengis.net/ont/geosparql#> . @prefix ex: <http://example.org/> . ex:Foo geo:hasGeometry ex:FooGeometry. ex:FooGeometry geo:asWKT "POINT(5.091025039849683 51.55845016358455)"^^geo:wktLiteral. The test query: PREFIX geo: <http://www.opengis.net/ont/geosparql#> PREFIX geof: <http://www.opengis.net/def/function/geosparql/> SELECT ?s ?wkt WHERE { ?s geo:asWKT ?wkt . FILTER(geof:sfWithin(?wkt, "POLYGON((5.034360992118195 51.595144381441415,5.149717437430695 51.595144381441415,5.149717437430695 51.52086334303003,5.034360992118195 51.52086334303003,5.034360992118195 51.595144381441415))"^^geo:wktLiteral)) } The indexed POINT geometry is located within the provided POLYGON. Therefore, I would expect one binding-set as result. What should I do to get this working? Thanks!!