Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

1 Answer

up vote 1 down vote accepted
SELECT ?subject ?label ?lat ?long WHERE {  
?subject owl:sameAs <http://dbpedia.org/resource/Eiffel_Tower> .
<http://dbpedia.org/resource/Eiffel_Tower> geo:lat ?lat.
<http://dbpedia.org/resource/Eiffel_Tower> geo:long ?long.
<http://dbpedia.org/resource/Eiffel_Tower> rdfs:label ?label . }

You can always try your query on http://dbpedia.org/isparql/ or http://dbpedia.org/snorql/

share|improve this answer
Thank you, don't have sufficient reputation to vote your answer up, but this is exactly what I needed! – user5950 Sep 2 '12 at 21:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.