Munsell hues are typically arranged from 5R to 5PB in Munsell soil color books. This function matches a vector of Munsell hues to the position in this arrangement of 29 hues.
huePosition(x, returnHues=FALSE)
character vector of hues, e.g. '10YR'
logical, should the unique set of Munsell hues used for ordering be returned? See details.
A vector of integer hue positions is typically returned, of the same length and order as x
. If returnHues
is TRUE, then the hue names and ordering is returned and x
is ignored.
This function is fully vectorized.
https://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/ref/?cid=nrcs142p2_053569
# NOT RUN {
# get hue ordering for setting levels of a factor
huePosition(x=NULL, returnHues=TRUE)
# get position of the '10YR' hue (7)
huePosition(x='10YR')
# }
Run the code above in your browser using DataLab