query-f33525b67abcfc5d9fe4f19d1d20e47b

rq turtle/ttl

Straßen als Karte: Chemnitz und Dresden, aber ergänzt um Chemnitz-spezifische Anpassung: diese Abfrage für DresdenIn Anlehnung an ergänzende Farben, um mehr Konstellationen darzustellen Voraussetzung für die Darstellung auf der Karte: Koordinate an Straße bei Wikidata hinterlegt (für Dresden und Chemnitz vollständig erledigt) liegen(alle) oder in einem der Chemnitzer Stadtteile (keine) oder in Chemnitz (alle; keine bei Stadtteilen o.ä.)Abfrage aller Innerortsstraßen, die in Dresden

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:P31 wd:Q79007 .                                # Innerortsstraße 
   {?item wdt:P131 wd:Q1731.}                               # ... liegt in der Verwaltungseinheit Dresden ...
          UNION                                                       # ... oder     (eigentlich ein "und")
  {?item wdt:P131 wd:Q2795.}                               # ... liegt in der Verwaltungseinheit Chemnitz ...
          UNION                                                       # ... oder     (eigentlich ein "und")
   {?item wdt:P131 ?Stadtteil . ?Stadtteil wdt:P131 wd:Q2795. }     # ... in einer Unter-Verwaltungseinheit von Chemnitz
}
  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; v2("?Stadtteil") v6("?check_cat") v7("?check_img") v3("?commons") v10("?commons2"):::projected v5("?coordinate"):::projected v4("?image"):::projected v1("?item"):::projected v9("?rgb"):::projected v8("?status"):::projected c12(["de"]):::literal c2(["wd:Q79007"]):::iri c15([https://commons.wikimedia.org/]):::iri c10(["bd:serviceParam"]):::iri c5(["wd:Q2795"]):::iri c4(["wd:Q1731"]):::iri v1 --"wdt:P31"--> c2 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; subgraph union1[" Union "] subgraph union1l[" "] style union1l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P131"--> v2 v2 --"wdt:P131"--> c5 end subgraph union1r[" "] style union1r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P131"--> c5 end union1r <== or ==> union1l end end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P131"--> c4 end union0r <== or ==> union0l end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P373".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end bind0[/"bound(?commons)string-length(?commons) > '0^^xsd:integer'"/] v3 --o bind0 bind0 --as--o v6 bind1[/"bound(?image)"/] v4 --o bind1 bind1 --as--o v7 bind2[/"if(?check_img,'image',if(?check_cat,'category','no cat'))"/] v7 --o bind2 v6 --o bind2 bind2 --as--o v8 bind3[/"if(?check_img?check_cat,'7FFF00',if(?check_img,'00008B',if(?check_cat,'009500','#ff0000')))"/] v7 --o bind3 v6 --o bind3 bind3 --as--o v9 subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v10 -."schema:about".-> v1 v10 --"schema:isPartOf"--> c15 end