query-a8427491b4aefeaa6c47295c03f93556

rq turtle/ttl

Q83467407 = Rathaus Fellbach (oder sonstiger Mittelpunkt) SELECT ?item ?itemLabel ?location WHERE { wd:Q83467407 wdt:P625 ?mittelpunktFellbach . # Rathaus Fellbach hat die Koordinate SERVICE wikibase:around { ?item wdt:P625 ?location . bd:serviceParam wikibase:center ?mittelpunktFellbach . bd:serviceParam wikibase:radius "2" . } SERVICE wikibase:label { bd:serviceParam wikibase:language "de" . } }

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#>
# Q83467407 = Rathaus Fellbach (oder sonstiger Mittelpunkt)
SELECT ?item ?itemLabel ?location WHERE
{
  wd:Q83467407 wdt:P625 ?mittelpunktFellbach .   # Rathaus Fellbach hat die Koordinate 
  SERVICE wikibase:around { 
      ?item wdt:P625 ?location . 
      bd:serviceParam wikibase:center ?mittelpunktFellbach . 
      bd:serviceParam wikibase:radius "2" . 
  } 
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "de" . 
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v3("?location"):::projected v1("?mittelpunktFellbach") c1(["wd:Q83467407"]):::iri c10(["de"]):::literal c7(["2"]):::literal c4(["bd:serviceParam"]):::iri 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