query-f1ed88b55d79c556277e42339a028c70

rq turtle/ttl

Objekte in Hannover

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#>
SELECT DISTINCT ?item ?itemLabel ?image ?coordinate ?strasse
WHERE {
  ?item wdt:P131 wd:Q1715. # Objekt liegt in Verwaltungseinheit Hannover (oder Unterklasse)
  OPTIONAL { ?item wdt:P18 ?image. }
  OPTIONAL { ?item wdt:P625 ?coordinate. }
  MINUS { ?item (wdt:P31/wdt:P279*) wd:Q34442. } # Objekt ist keine Straße oder Unterklasse davon
  MINUS { ?item wdt:P669 ?strasse }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,[AUTO_LANGUAGE]". }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coordinate"):::projected v2("?image"):::projected v1("?item"):::projected v4("?strasse"):::projected a1((" ")) c7(["wd:Q34442"]):::iri c10(["bd:serviceParam"]):::iri c2(["wd:Q1715"]):::iri c12(["de,#91;AUTO_LANGUAGE#93;"]):::literal v1 --"wdt:P131"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v2 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v3 end subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c7 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P669"--> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end