query-2f46d3f113692f2fb91f73184dd043c8

rq turtle/ttl

Abfragen

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{"hide":["?geographische_Koordinaten", "?layer", "?StadttafelOrdnungsnummer"]}
#---------------------------
# Erhaltene Stadttafeln in Hannover mit und ohne Bild
#---------------------------
SELECT ?Stadttafel ?StadttafelLabel ?StadttafelOrdnungsnummer ?geographische_Koordinaten ?Bild ?layer
WHERE {
  ?Stadttafel wdt:P31 wd:Q721747;
              wdt:P361 wd:Q67506051;
              wdt:P5816 wd:Q56557591.
  OPTIONAL {
    ?Stadttafel wdt:P625 ?geographische_Koordinaten;
    MINUS {?Stadttafel wdt:P18 ?Bild}
    BIND ("Kein Bild vorhanden/No picture available" AS ?layer)
  }
  OPTIONAL {
    ?Stadttafel wdt:P18 ?Bild;
                wdt:P625 ?geographische_Koordinaten.
    BIND ("Bild vorhanden/Picture available" AS ?layer)
    }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en"  }
  }
ORDER BY ?StadttafelOrdnungsnummer

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?Bild"):::projected v2("?Stadttafel"):::projected v1("?StadttafelOrdnungsnummer"):::projected v3("?geographische_Koordinaten"):::projected v6("?layer"):::projected c6(["wd:Q56557591"]):::iri c10(["bd:serviceParam"]):::iri c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q721747"]):::iri c4(["wd:Q67506051"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P361"--> c4 v2 --"wdt:P5816"--> c6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P18"--> v4 end bind1[/"'Kein Bild vorhanden/No picture available'"/] bind1 --as--o v6 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v4 v2 --"wdt:P625"--> v3 bind2[/"'Bild vorhanden/Picture available'"/] bind2 --as--o v6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end