query-05d3b42bdcf69dcc953f7688a2ce86cf

rq turtle/ttl

Objekte im Umkreis von Dresden

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT ?item ?itemLabel ?coordinate WHERE {
  wd:Q1731 wdt:P625 ?Center. #Lage von Dresden
  SERVICE wikibase:around {
    ?item wdt:P625 ?coordinate.
    bd:serviceParam wikibase:center ?Center.
    bd:serviceParam wikibase:radius "10". # 10 Kilometer around
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
  #FILTER(EXISTS { ?place (wdt:P31/wdt:P279*) wd:Q1248784. })
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?Center") v3("?coordinate"):::projected v2("?item"):::projected c4(["bd:serviceParam"]):::iri c1(["wd:Q1731"]):::iri c10(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal c7(["10"]):::literal c1 --"wdt:P625"--> v1 subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v2 --"wdt:P625"--> v3 c4 --"wikibase:center"--> v1 c4 --"wikibase:radius"--> c7 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c4 --"wikibase:language"--> c10 end