soil_class: soil texture class, based on USDA triangle

View source: R/soil_class.R

soil_classR Documentation

soil texture class, based on USDA triangle

Description

soil texture class, based on USDA triangle

Usage

soil_class(clay, sand)

Arguments

clay

Vector, percent of clay

sand

Vector, percent of sand

Value

Character vector of soil texture class, one of c("Cl", "SiCl", "SaCl", "ClLo", "SiClLo", "SaClLo", "Lo", "SiLo", "SaLo", "Si", "LoSa", "Sa").

References

  1. Julien Moeys (2016). soiltexture: Functions for Soil Texture Plot, Classification and Transformation. R package version 1.5.1. https://CRAN.R-project.org/package=soiltexture

Examples

clay = c(05, 60, 15, 05, 25, 05, 25, 45, 65, 75, 13, 47)
sand = c(90, 32, 70, 70, 20, 10, 10, 10, 20, 10, 70, 10)
soil_class(clay, sand)
# c("Sa", "Cl", "SaLo", "SaLo", "SiLo", "Si", "SiLo", "SiCl", "Cl", "Cl", "SaLo", "SiCl")

rpkgs/hydroTools documentation built on Oct. 8, 2024, 7:47 p.m.