query-19add9849e958287c7753fd859084821

rq turtle/ttl

Straßen als Karte: Sachsen und obige Darstellung, aber erweitert auf ganz Sachsen: diese Abfrage für DresdenIn Anlehnung an vier Farben, um verschiedene Konstellationen darzustellen Voraussetzung für die Darstellung auf der Karte: Koordinate an Straße bei Wikidata hinterlegt Abfrage aller Innerortsstraßen, die in Sachsen bzw. einer Unterverwaltungseinheit davon liegen

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#>
PREFIX schema: <http://schema.org/>
#defaultView:Map
SELECT DISTINCT ?item ?itemLabel ?image 
   ?commons2 ?coordinate ?status ?rgb

WHERE 
 { ?item (wdt:P131|wdt:1001) ?sub0 . ?tree0 (wdt:P150)* ?sub0 . ?tree0 (wdt:P131)* wd:Q1202 .   # Unterverwaltungseinheit von Sachsen
    ?item wdt:P31 wd:Q79007 .     # Innerortsstraße 
  OPTIONAL { ?item wdt:P373 ?commons. } 
  OPTIONAL { ?item wdt:P18 ?image. }                                 
  OPTIONAL { ?item wdt:P625 ?coordinate. }                          
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }

  BIND(BOUND(?commons) && strlen(?commons)>0 as ?check_cat)          
  BIND(BOUND(?image) as ?check_img)                                  

  BIND(  IF( ?check_img , "image",
         IF( ?check_cat , "category",   
            "no cat")) AS ?status).

  BIND(  IF( ?check_img && ?check_cat, "7FFF00",     # 7FFF00 hellgrün:    mit Koordinaten, Bild und Commons-Kategorie bei Wikidata hinterlegt
         IF( ?check_img , "00008B",                  # 00008b blau:        nur mit Koordinaten und Bild bei Wikidata, aber ohne Commons-Kategorie
         IF( ?check_cat , "009500",                  # 009500 dunkelgrün:  nur mit Koordinaten bei Wikidata und Commons-Kategorie, ohne Bild bei Wikidata
            "#ff0000"))) AS ?rgb).                   # ff0000 rot:         andernfalls, also nur Koordinaten bei Wikidata, aber ohne Bild und ohne Commons-Kategorie
  OPTIONAL {?commons2   schema:about ?item ;
           schema:isPartOf <https://commons.wikimedia.org/> .
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v7("?check_cat") v8("?check_img") v4("?commons") v11("?commons2"):::projected v6("?coordinate"):::projected v5("?image"):::projected v1("?item"):::projected v10("?rgb"):::projected v9("?status"):::projected v2("?sub0") v3("?tree0") c13(["de"]):::literal c6(["wd:Q79007"]):::iri c16([https://commons.wikimedia.org/]):::iri c11(["bd:serviceParam"]):::iri c4(["wd:Q1202"]):::iri subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:1001"--> v2 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P131"--> v2 end union0r <== or ==> union0l end v3 --"wdt:P150"--> v2 v3 --"wdt:P131"--> c4 v1 --"wdt:P31"--> c6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P373".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v5 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end bind0[/"bound(?commons)string-length(?commons) > '0^^xsd:integer'"/] v4 --o bind0 bind0 --as--o v7 bind1[/"bound(?image)"/] v5 --o bind1 bind1 --as--o v8 bind2[/"if(?check_img,'image',if(?check_cat,'category','no cat'))"/] v8 --o bind2 v7 --o bind2 bind2 --as--o v9 bind3[/"if(?check_img?check_cat,'7FFF00',if(?check_img,'00008B',if(?check_cat,'009500','#ff0000')))"/] v8 --o bind3 v7 --o bind3 bind3 --as--o v10 subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v11 -."schema:about".-> v1 v11 --"schema:isPartOf"--> c16 end