query-7e4c572e2b36946ab30853c65a070cb6
Objekte in Dresden ohne Koordinate
Use at
- https://query.wikidata.org/sparql
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#>
#---------------------------------------------------------------------------------------
# Geographische Objekte ohne Koordinate
#---------------------------------------------------------------------------------------
#defaultView:Table
select ?item ?itemLabel ?itemDescription ?destrictLabel ?coordinates
where{
?item (wdt:P131/wdt:P279*) wd:Q1731 . # in Dresden
OPTIONAL { ?item wdt:P18 ?image. } # Bild
minus { ?item wdt:P625 _:b1. } # kein Objekt, was eine Koordinate besitzt
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en". }
}
order by ?itemDescription
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?image")
v2("?item"):::projected
v1("?itemDescription"):::projected
a2((" "))
a1((" "))
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal
c3(["wd:Q1731"]):::iri
v2 --"wdt:P131"--> a1
a1 --"wdt:P279"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v3
end
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P625"--> a2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end