Learn R Programming

aqp (version 2.1.0)

contrastClass: Soil Color Contrast

Description

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.

Usage

contrastClass(v1, c1, v2, c2, dH, dV, dC, verbose = FALSE)

Value

A vector of color contrast classes (ordered factor). A list when verbose is TRUE.

Arguments

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

Author

D.E. Beaudette

Details

This function is fully vectorized but expects all inputs have the same length.

References

See Also

colorContrast

Examples

Run this code

## 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)

Run the code above in your browser using DataLab