query-2158da9d1499ee9ef159d0b93c06d69f

rq turtle/ttl

Straßenverbindungen als Graph

Use at

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#>
#defaultView:Graph;Table
#------------------------------------------------------------------------------------
# Straßenverbindungen als Graph (über die Eigenschaft "physisch verbunden mit")
#------------------------------------------------------------------------------------
SELECT distinct
?item ?itemLabel ?image  ?other ?otherLabel ?image2
WHERE
{
    ?item wdt:P131+ wd:Q3214. # Objekt liegt in Verwaltungseinheit Cottbus (oder Subklasse)

    #?instance_of wdt:P279+ wd:Q376799 .   # Verkehrsinfrastuktur
    VALUES ?instance_of { 
      wd:Q79007      # Innerortstraße
      wd:Q21000333   # Einkaufsstraße 
      wd:Q174782     # Platz
      wd:Q537127     # Straßenbrücke
      wd:Q3397519    # Spannbetonbrücke 
      wd:Q1055465    # Balkenbrücke  
    } # Innerortstraße oder Platz oder Brücke
    ?item wdt:P31 ?instance_of.

    ?item  wdt:P2789    ?other  .   # verbundenes objekt

    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; v4("?image"):::projected v5("?image2"):::projected v2("?instance_of") v1("?item"):::projected v3("?other"):::projected c7(["bd:serviceParam"]):::iri c9(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal c2(["wd:Q3214"]):::iri 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 bind03(["wd:Q537127"]) bind03 --> bind0 bind04(["wd:Q3397519"]) bind04 --> bind0 bind05(["wd:Q1055465"]) bind05 --> bind0 v1 --"wdt:P31"--> v2 v1 --"wdt:P2789"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v4 v3 --"wdt:P18"--> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end