query-0ead5bd3e7b6f83ef45a2df236bc1136
Propertiesinstance of (P31)area (P2046)German district key (P440)German municipality key (P439)
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#>
SELECT ?kreis ?kreisLabel ?flaeche ?kreisschl ?land
WHERE
{
# Landkreis und kreisfreie Stadt
#?kreis wdt:P31 ?x.
#FILTER (?x in (wd:Q106658 , wd:Q22865)).
# nur Landkreise
?kreis wdt:P31 wd:Q106658.
OPTIONAL {?kreis wdt:P2046 ?flaeche.}.
?kreis wdt:P440 ?kreisschl.
BIND(SUBSTR(?kreisschl, 1, 2) AS ?land)
# bei kreisfreien Staedten
#OPTIONAL {?kreis wdt:P439 ?ags.}.
SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
}
ORDER BY ?kreisschl
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?flaeche"):::projected
v2("?kreis"):::projected
v1("?kreisschl"):::projected
v4("?land"):::projected
c2(["wd:Q106658"]):::iri
c8(["de"]):::literal
c6(["bd:serviceParam"]):::iri
v2 --"wdt:P31"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P2046".-> v3
end
v2 --"wdt:P440"--> v1
bind0[/"substring(?kreisschl,'1^^xsd:integer','2^^xsd:integer')"/]
v1 --o bind0
bind0 --as--o v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end