I'm having some issues loading data with non-default projections into GraphDB.
Using the example files from the documentation website, but changing the projection from CRS84 to CRS83, results in no intersections being found when running example 2 (also from the website). Does GraphDB support loading data with different projections? If so, is there something extra I need to do in order for this to work?
If I leave the projection as CRS84, everything works as expected.
Here's the query I'm attempting to execute:
PREFIX my: <http://example.org/ApplicationSchema#>
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX geof: <http://www.opengis.net/def/function/geosparql/>
SELECT ?f
WHERE {
?f my:hasPointGeometry ?fGeom .
?fGeom geo:asWKT ?fWKT .
FILTER (geof:sfWithin(?fWKT, '''
<http://www.opengis.net/def/crs/OGC/1.3/CRS83>
Polygon ((-83.4 34.0, -83.1 34.0, -83.1 34.2, -83.4 34.2, -83.4 34.0))
'''^^geo:wktLiteral))
}