View source: R/contrastClass.R
contrastClass | R Documentation |
Determine soil color contrast class according to methods outlined in the
Soil Survey Manual. This function is typically called from
colorContrast()
which is simpler to use and provides more
information.
contrastClass(v1, c1, v2, c2, dH, dV, dC, verbose = FALSE)
v1 |
Munsell value of first color |
c1 |
Munsell chroma of first color |
v2 |
Munsell value of second color |
c2 |
Munsell chroma of second color |
dH |
delta Hue |
dV |
delta Value |
dC |
delta Chroma |
verbose |
return a list for testing rules/cases |
This function is fully vectorized but expects all inputs have the same length.
A vector of color contrast classes (ordered factor). A list when
verbose
is TRUE.
D.E. Beaudette
Soil Survey Technical Note 2 wayback machine URL
colorContrast
## standard use, result is an ordered factor
# 10YR 6/3 vs 5YR 3/4
contrastClass(v1=6, c1=3, v2=3, c2=4, dH=2, dV=3, dC=1)
## verbose output, useful for testing rules/cases
# 10YR 6/3 vs 5YR 3/4
contrastClass(v1=6, c1=3, v2=3, c2=4, dH=2, dV=3, dC=1, verbose = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.