query-9d9d5861b32b1e30903f93808b1c2148
title: Objekte im Umkreis um eine geographische Koordinate finden
Quelle: https://stackoverflow.com/questions/49302399/how-to-get-cities-around-a-location-in-wikidata
SELECT DISTINCT ?distance ?obj ?objLabel ?location WHERE {
# Use the around service # Erläuterung: https://en.wikibooks.org/wiki/SPARQL/SERVICE_-_around_and_box SERVICE wikibase:around { # Looking for items with coordinate locations(P625) ?obj wdt:P625 ?location .
# definierte Koordinate, die als Zentrum der Umkreissuche verwendet werden soll:
# Format: "Point(lon,lat)"^^geo:wktLiteral
bd:serviceParam wikibase:center "Point(13.339785,52.519163)"^^geo:wktLiteral .
# Umkreis in km
bd:serviceParam wikibase:radius "0.1" .
bd:serviceParam wikibase:distance ?distance .
} .
# Optional kann die Treffermenge auch auf bestimmte # Objektkategorien eingeschränkt werden # relevante Objektklassen (Statue, Denkmal, Skulptur) # ggf. auskommentieren # VALUES ?object { wd:Q179700 wd:Q4989906 wd:Q860861} # ?obj wdt:P31/wdt:P279* ?object .
# Use the label service to get the English label SERVICE wikibase:label { bd:serviceParam wikibase:language "de" . } } ORDER BY ?distance
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Objekte im Umkreis um eine geographische Koordinate finden
#Quelle: https://stackoverflow.com/questions/49302399/how-to-get-cities-around-a-location-in-wikidata
SELECT DISTINCT ?distance ?obj ?objLabel ?location WHERE {
# Use the around service
# Erläuterung: https://en.wikibooks.org/wiki/SPARQL/SERVICE_-_around_and_box
SERVICE wikibase:around {
# Looking for items with coordinate locations(P625)
?obj wdt:P625 ?location .
# definierte Koordinate, die als Zentrum der Umkreissuche verwendet werden soll:
# Format: "Point(lon,lat)"^^geo:wktLiteral
bd:serviceParam wikibase:center "Point(13.339785,52.519163)"^^geo:wktLiteral .
# Umkreis in km
bd:serviceParam wikibase:radius "0.1" .
bd:serviceParam wikibase:distance ?distance .
} .
# Optional kann die Treffermenge auch auf bestimmte
# Objektkategorien eingeschränkt werden
# relevante Objektklassen (Statue, Denkmal, Skulptur)
# ggf. auskommentieren
# VALUES ?object { wd:Q179700 wd:Q4989906 wd:Q860861}
# ?obj wdt:P31/wdt:P279* ?object .
# Use the label service to get the English label
SERVICE wikibase:label {
bd:serviceParam wikibase:language "de" .
}
}
ORDER BY ?distance