query-1933b1a8c1a0a2ba337da5b4f57e3e9e

rq turtle/ttl

SPARQL - Alle Wikidata-Items im Radius von 3km um XXX mit Objekt-typ

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#>
# Q574249 = Lorch (oder sonstiger Mittelpunkt)
#defaultView:Map{"hide":["?location"]}
SELECT ?item ?itemLabel ?location ?instanceOfLabel ?bild WHERE
{
  wd:Q574249 wdt:P625 ?mittelpunktFellbach .   # Rathaus Fellbach hat die Koordinate 
  ?item wdt:P31 ?instanceOf .

  SERVICE wikibase:around { 
      ?item wdt:P625 ?location . 

      bd:serviceParam wikibase:center ?mittelpunktFellbach . 
      bd:serviceParam wikibase:radius "3" . 
  } 
  OPTIONAL { ?item wdt:P18  ?bild  } .   # ?item hat das Bild ?bild oder ist leer 
  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; v5("?bild"):::projected v3("?instanceOf") v2("?item"):::projected v4("?location"):::projected v1("?mittelpunktFellbach") c12(["de"]):::literal c1(["wd:Q574249"]):::iri c5(["bd:serviceParam"]):::iri c8(["3"]):::literal c1 --"wdt:P625"--> v1 v2 --"wdt:P31"--> v3 subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v2 --"wdt:P625"--> v4 c5 --"wikibase:center"--> v1 c5 --"wikibase:radius"--> c8 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v5 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c5 --"wikibase:language"--> c12 end