Dear Stardog support,
I just started to use Stardog to eventually set up a knowledge graph with some geospatial features.
For the very first steps I followed your "Stardog geospatial" tutorial ( Stardog Geospatial | Stardog Documentation Latest ) and downloaded your example data ( stardog-tutorials/stardog-geospatial/dclandmarks.ttl at master · stardog-union/stardog-tutorials · GitHub ). Then I switched to Studio, created a new database (with the "spatial.enabled" flag enabled!) and imported the example data to the default graph. After that the database has 65 edges. I also added the additional namespaces that are used in that data file.
Then I opened a new workspace tab with this query:
SELECT * WHERE {
?s ?p ?o .
}
LIMIT 1000
This shows 65 results.
The example query from the tutorial
prefix geo: http://www.opengis.net/ont/geosparql#
prefix geof: http://www.opengis.net/def/function/geosparql/
prefix : http://blog.stardog.com/geons/
SELECT ?geom ?feature {
?f a :Location ;
rdfs:label ?feature ;
geo:hasGeometry ?geom .
?geom geof:within ("POINT(-77.111 38.855)"^^geo:wktLiteral "POINT(-77.052 38.885)"^^geo:wktLiteral) .
}
shows 2 results. That all looks fine.
When I click an entry in the 65 results table from the first query and choose "Visualize" it switches to Explorer and I see one triple (in this case: "Location" - "type" - "Washington Monument"). Now I don't understand several things:
- I thought that when I double click on "Location" that the other landmarks will also appear!?
- In general: Double clicking on "Location" or "Washington Monument" does not show anything. I expected the see the "geo:*" links...
- When I perform an "empty search" (with "All v" on the left of the input field) I get "No results". This happens in both "List" and "Graph" view.
- According to the documentation ( Stardog Explorer | Stardog Documentation Latest ) Explorer should display the Location instances on a map. But in my case no map is displayed.
Am I doing something wrong?
Thanks a lot for your help!
P.S.: I just saw: GeoSparql queries not working - #3 by NielsHoffmann
Do I also have a licence problem?

