Skip to content

Instantly share code, notes, and snippets.

@ssp
Last active May 26, 2016 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssp/58d3ae7b0bcef234a04d6b8c8d7829d9 to your computer and use it in GitHub Desktop.
Save ssp/58d3ae7b0bcef234a04d6b8c8d7829d9 to your computer and use it in GitHub Desktop.
Colours from Wikidata/dbpedia
SELECT ?color ?label (lang(?label) AS ?language) ?hex ?hue WHERE {
?color rdf:type dbo:Colour.
?color dbo:colourHexCode ?hex.
?color dbo:hsvCoordinateHue ?hue.
?color rdfs:label ?label.
FILTER (lang(?label) ="de" || lang(?label) ="en" || lang(?label) ="fr" || lang(?label) ="tr")
}
ORDER BY DESC(?hue)
SELECT ?color ?label (lang(?label) AS ?language) ?rgb WHERE {
?color wdt:P31/wdt:P279* wd:Q1075. # instance or subclass of »colour«
?color wdt:P465 ?rgb. # store sRGB value in ?rgb
?color rdfs:label ?label. # store label in ?label
FILTER (lang(?label)="de" || lang(?label) = "en" || lang(?label) = "fr" || lang(?label) = "tr")
}
ORDER BY ASC(?rgb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment