I would like to fetch geodata from DBpedia to a specific object: could be a city a Building or something else, eg. http://dbpedia.org/resource/Eiffel_Tower http://dbpedia.org/resource/Paris
I tried this query, but I cant get it working:
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
SELECT ?subject ?label ?lat ?long WHERE { <http://dbpedia.org/resource/Eiffel_Tower>
?subject geo:lat ?lat.
?subject geo:long ?long.
?subject rdfs:label ?label . }
I am an absolute beginner with SPARQL and knowing that there are a lot of examples out there, how to do such a query I was not able to find an solution for that