This function calculates the risk for wind erodibility of soils, derived from Van Kerckhoven et al. (2009) and Ros & Bussink (2013)

calc_winderodibility(B_LU_BRP, A_CLAY_MI, A_SILT_MI)

Arguments

B_LU_BRP

(numeric) The crop code from the BRP

A_CLAY_MI

(numeric) The clay content of the soil (%)

A_SILT_MI

(numeric) The silt content of the soil (%)

Value

The vulnerability of the soil for wind erosion. A numeric value.

Examples

calc_winderodibility(B_LU_BRP = 265, A_CLAY_MI = 4, A_SILT_MI = 15)
#> [1] 0
calc_winderodibility(B_LU_BRP = c(265,1019), A_CLAY_MI = c(4,18), A_SILT_MI = c(15,65))
#> [1] 0.00000000 0.06261159