Determines the soil texture class (ID_Rag) based on clay and sand percentages.
Usage
tri2(clay = 10, sand = 35)
Arguments
- clay
Percentage of clay in the soil.
- sand
Percentage of sand in the soil.
Value
The soil texture class ID (ID_Rag) corresponding to the given clay
and sand percentages.
Examples
tri2(clay = 10, sand = 35)
#> [1] 6
tri2(clay = 25, sand = 20)
#> [1] 6