query-05838802d1f0d34e2230e5e5cefc6bf1
Straßen, Plätze und Brücken in Dresden ohne Bild (Umkreissuche)
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, Plätze und Brücken in Dresden ohne Bild (Umkreissuche)
#-------------------------------------------------------------------------------
#defaultView:Map
SELECT ?item ?itemLabel ?coordinate WHERE {
wd:Q21161975 wdt:P625 ?Center. #Objekt im Zentrum für den Umkreis (z.B. Altmarkt Dresden)
VALUES ?instance_of { wd:Q79007 wd:Q174782 wd:Q537127} # Liste von Objekttypen definieren: Innerortstraße oder Platz oder Brücke
?item wdt:P31 ?instance_of # nur Objekte mit passenden Objekttyp
SERVICE wikibase:around {
?item wdt:P625 ?coordinate.
bd:serviceParam wikibase:center ?Center.
bd:serviceParam wikibase:radius "0.8". # Radius für den Umkreise in Kilometer (z.B. "0.5" für 500 Meter)
}
optional { ?item wdt:P18 ?image. }
FILTER(!BOUND(?image))
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
#FILTER(EXISTS { ?place (wdt:P31/wdt:P279*) wd:Q1248784. })
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?Center")
v5("?coordinate"):::projected
v1("?image")
v3("?instance_of")
v4("?item"):::projected
c1(["wd:Q21161975"]):::iri
c5(["bd:serviceParam"]):::iri
c8(["0.8"]):::literal
c12(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
f0[["not bound(?image)"]]
f0 --> v1
c1 --"wdt:P625"--> v2
bind1[/VALUES ?instance_of/]
bind1-->v3
bind10(["wd:Q79007"])
bind10 --> bind1
bind11(["wd:Q174782"])
bind11 --> bind1
bind12(["wd:Q537127"])
bind12 --> bind1
v4 --"wdt:P31"--> v3
subgraph s1["http://wikiba.se/ontology#around"]
style s1 stroke-width:4px;
v4 --"wdt:P625"--> v5
c5 --"wikibase:center"--> v2
c5 --"wikibase:radius"--> c8
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P18".-> v1
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c5 --"wikibase:language"--> c12
end