query-c2c7bf4816cf5d684affa49d853553ac
I added a code to generate a map of countries which flag include a given color.
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#>
#defaultView:Map
SELECT ?drapeau ?drapeauLabel ?couleur ?couleurLabel ?territoire ?territoireLabel ?coordinates ?coordinatesLabel
WHERE
{
?drapeau wdt:P1001 ?territoire;
wdt:P31 wd:Q186516.
?drapeau wdt:P462 ?couleur.
?territoire wdt:P625 ?coordinates .
FILTER ( ?couleur in ( wd:Q23445) )
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE], en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?coordinates"):::projected
v1("?couleur"):::projected
v2("?drapeau"):::projected
v3("?territoire"):::projected
c8(["bd:serviceParam"]):::iri
c4(["wd:Q186516"]):::iri
c10(["#91;AUTO_LANGUAGE#93;, en"]):::literal
f0[["?couleur = 'wd:Q23445'"]]
f0 --> v1
v2 --"wdt:P1001"--> v3
v2 --"wdt:P31"--> c4
v2 --"wdt:P462"--> v1
v3 --"wdt:P625"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end