query-9d9d5861b32b1e30903f93808b1c2148

rq turtle/ttl

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

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

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?distance"):::projected v3("?location"):::projected v2("?obj"):::projected c11(["de"]):::literal c3(["bd:serviceParam"]):::iri c7(["0.1"]):::literal c5([sPoint(13.339785,52.519163)^^<http://www.opengis.net/ont/geosparql#wktLiteral>"]):::literal subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v2 --"wdt:P625"--> v3 c3 --"wikibase:center"--> c5 c3 --"wikibase:radius"--> c7 c3 --"wikibase:distance"--> v1 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c3 --"wikibase:language"--> c11 end