query-3018b98f961823ff43476a770c45c8ad
Stadtbezirke von Dresden
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#>
#---------------------------------------------------------------------------------------
# Alle 10 Stadtbezirke von Dresden (ehemals Ortsamtsbereich)
#---------------------------------------------------------------------------------------
#defaultView:Table
SELECT ?item ?itemLabel ?itemDescription ?image ?coordinate
WHERE {
?item wdt:P131 wd:Q1731. # liegt in Verwaltungseinheit Dresden
VALUES ?instance_of {
wd:Q2740635 # Stadtbezirk in Deutschland
wd:Q4286337 # Stadtbezirk
}
?item wdt:P31 ?instance_of # ist ein Stadtbezirk (sollten 10 Stück sein)
OPTIONAL { ?item wdt:P18 ?image . }
OPTIONAL { ?item wdt:P625 ?coordinate . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?coordinate"):::projected
v4("?image"):::projected
v3("?instance_of")
v2("?item"):::projected
v1("?itemLabel"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q1731"]):::iri
c9(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
v2 --"wdt:P131"--> c2
bind0[/VALUES ?instance_of/]
bind0-->v3
bind00(["wd:Q2740635"])
bind00 --> bind0
bind01(["wd:Q4286337"])
bind01 --> bind0
v2 --"wdt:P31"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P625".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end