query-ab2de420deb3071178a44a18047825e8

rq turtle/ttl

Geocodierung von Denkmalobjekten

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 ?Kulturdenkmal ?KulturdenkmalLabel ?liegt_in_der_Verwaltungseinheit ?liegt_in_der_VerwaltungseinheitLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  {?Kulturdenkmal (wdt:P31/wdt:P279*) wd:Q358.}
  UNION
  {?Kulturdenkmal wdt:P1435/wdt:P279* wd:wd:Q358.}
  ?Kulturdenkmal wdt:P17 wd:Q183.
  MINUS { ?Kulturdenkmal wdt:P625 ?geographische_Koordinaten. }
  OPTIONAL { ?Kulturdenkmal wdt:P131 ?liegt_in_der_Verwaltungseinheit. }
}
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?Kulturdenkmal"):::projected v2("?geographische_Koordinaten") v3("?liegt_in_der_Verwaltungseinheit"):::projected a1((" ")) a2((" ")) c7(["wd:Q358"]):::iri c2(["bd:serviceParam"]):::iri c9(["wd:wd:Q358"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal c11(["wd:Q183"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P1435"--> a2 a2 --"wdt:P279"--> c9 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c7 end union0r <== or ==> union0l end v1 --"wdt:P17"--> c11 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P625"--> v2 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P131".-> v3 end