query-5f6977369b19e6730a63cba4531842bb
Dróhi a naměsta w Chrósćicach
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#>
#---------------------------------------------------------------------------------------
# Straßen und Plätze in Crostwitz
#---------------------------------------------------------------------------------------
#defaultView:Map{"layer":"?instance_ofLabel"}
SELECT ?item ?itemLabel ?itemDescription ?coordinate ?instance_ofLabel
WHERE {
?item wdt:P131 wd:Q93223. # liegt in Verwaltungseinheit Crostwitz
VALUES ?instance_of {
wd:Q79007 # Innerortstraße
wd:Q21000333 # Einkaufsstraße
wd:Q174782 # Platz
}
?item wdt:P31 ?instance_of. # ist Straße oder Platz
?item wdt:P625 ?coordinate.
#BIND(IF(BOUND(?street),"FFA500","7FFF00") AS ?rgb)
SERVICE wikibase:label { bd:serviceParam wikibase:language "hsb,de,[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coordinate"):::projected
v2("?instance_of")
v1("?item"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q93223"]):::iri
c8(["hsb,de,#91;AUTO_LANGUAGE#93;"]):::literal
v1 --"wdt:P131"--> c2
bind0[/VALUES ?instance_of/]
bind0-->v2
bind00(["wd:Q79007"])
bind00 --> bind0
bind01(["wd:Q21000333"])
bind01 --> bind0
bind02(["wd:Q174782"])
bind02 --> bind0
v1 --"wdt:P31"--> v2
v1 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end