How can I query dbpedia to get the names and hex codes of all color values (i.e. any use of the color infobox) in wikipedia?

An example of the color info box: http://en.wikipedia.org/w/index.php?title=Spring_green&action=edit&section=8

DBpedia web interfaces here and here

link|improve this question

69% accept rate
feedback

1 Answer

You can try the following query:

select distinct ?colour ?hex where {?colour a <http://dbpedia.org/ontology/Colour> . ?colour <http://dbpedia.org/property/hex> ?hex}

see the results here.

also the following query:

select distinct ?colour ?hex where {?colour a <http://dbpedia.org/ontology/Colour> . ?colour <http://dbpedia.org/ontology/colourHexCode> ?hex}

and the result.

link|improve this answer
The hex values seem to be nonsensical for many of the colors. – svick Jan 26 at 23:16
I think it's because dbpedia groups down "variants" of a color into the parent color e.g. Many shades of blue go into the "blue" node. So the hex is per a particular shade of blue but it doesn't know which. So you have to traverse down into the variant and back up again if the color has variants. – ʞɔıu Jan 27 at 19:05
I think DBpedia doesn't do much with color variants, there's no inference of that kind. – Jona Christopher Sahnwaldt Feb 16 at 19:55
The two queries look similar, but are actually very different - dbpedia.org/property/hex is a raw property. For example, the first query claims that the New Hampshire Wildcats have a property called "hex" with the value 337.0° Fahrenheit, because the infobox contains the line hex1=00337F, which the raw DBpedia extractor treats with certain heuristics and comes up with that wild property. – Jona Christopher Sahnwaldt Feb 16 at 20:04
The mapping based extractor, on the other hand, knows that the New Hampshire Wildcats are not a color, and also knows that colors have a hex code that should be extracted as a string, not as an integer. Thus the values in the second query are much cleaner. It uses the 'clean' property dbpedia.org/ontology/colourHexCode . See mappings.dbpedia.org/index.php/Mapping:Infobox_color and mappings.dbpedia.org/index.php/OntologyProperty:ColourHexCode . – Jona Christopher Sahnwaldt Feb 16 at 20:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.