An attempt to query for colours and their hex values to get their names in several languages.
Last active
May 26, 2016 21:40
-
-
Save ssp/58d3ae7b0bcef234a04d6b8c8d7829d9 to your computer and use it in GitHub Desktop.
Colours from Wikidata/dbpedia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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