query-93869ea5f611b690c8b13b7bd254f6f3
Straßen und Gebäude als Graph
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 Gebäude als Graph (über die Eigenschaft "Straße")
#----------------------------------------------------------------
#defaultView:Graph;Table
SELECT distinct ?item ?itemLabel ?image ?other ?otherLabel ?image2
WHERE
{
?item wdt:P131+ wd:Q3214. # Adresseobjekt liegt Verwaltungseinheit Cottbus (oder Subklasse)
?other wdt:P669 ?item . # Objekt hat "Straße" = Adresseobjekt
OPTIONAL {
?item wdt:P18 ?image . # grab image1
?other wdt:P18 ?image2 . # grab image2
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?image"):::projected
v4("?image2"):::projected
v1("?item"):::projected
v2("?other"):::projected
c6(["bd:serviceParam"]):::iri
c8(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
c2(["wd:Q3214"]):::iri
v1 --"wdt:P131"--> c2
v2 --"wdt:P669"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v3
v2 --"wdt:P18"--> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end