query-0e6256b6da1a772669521007fb795c10
Shape
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#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?Stadtteil ?StadtteilLabel (xsd:float(?einwohner)/xsd:float(?flaeche) AS ?dichte) ?form ?rgb
WHERE
{
?Stadtteil wdt:P31 wd:Q97312698 ;
wdt:P1082 ?einwohner ;
wdt:P2046 ?flaeche ;
wdt:P3896 ?form .
BIND(
IF(?dichte <= 50, "7cfc00",
IF(?dichte <= 100, "ff8800", "ff80000")
)
AS ?rgb)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". }
}
ORDER BY ASC ( ?ObjektLabel )
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?ObjektLabel")
v2("?Stadtteil"):::projected
v7("?dichte")
v3("?einwohner"):::projected
v4("?flaeche"):::projected
v5("?form"):::projected
v6("?rgb"):::projected
c9(["#91;AUTO_LANGUAGE#93;,de"]):::literal
c2(["wd:Q97312698"]):::iri
c7(["bd:serviceParam"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P1082"--> v3
v2 --"wdt:P2046"--> v4
v2 --"wdt:P3896"--> v5
bind0[/"if(?dichte <= '50^^xsd:integer','7cfc00',if(?dichte <= '100^^xsd:integer','ff8800','ff80000'))"/]
v7 --o bind0
bind0 --as--o v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind1[/"http://www.w3.org/2001/XMLSchema#float(?einwohner) / http://www.w3.org/2001/XMLSchema#float(?flaeche)"/]
v3 --o bind1
v4 --o bind1
bind1 --as--o v7