I’m trying to do some GeoSparql queries. I enabled spatial functionality when creating the repo.
If I do "stardog-admin metdata get " I get:
| spatial.enabled | true
| spatial.index.version | 1
| spatial.precision | 11
But in the stardog.log the following appears:
SELECT ?m ?p
WHERE {
?m a ex:Monument ;
geo:hasGeometry ?mgeo .
?p a ex:Park ;
geo:hasGeometry ?pgeo .
?mgeo geof:within ?pgeo .
} limit 50 offset 0
org.openrdf.query.QueryEvaluationException: com.complexible.stardog.plan.eval.ExecutionException: The database has geospatial functionality disabled, cannot perform spatial queries.
Any clue what the problem could be?
I’m using Stardog Community 4.2.3 on windows 7 with jre1.8.0_111
Cheers,
Niels