Learn R Programming

soilassessment (version 0.3.0)

sloplenFUN: A function for estimating slope-length factor for soil erosion

Description

Th function estimates slope length factor for erosion risk assessment. It has options for choosing different algorithms

Usage

sloplenFUN(ls,slope,method)

Value

a dimensionless quantity of slope-length factor of erosion risk

Arguments

ls

length of slope in metres

slope

slope of land in degrees

method

method for deriving slope-length factor. The methods included are: WSmith, Renard, Remortel, Zhang, Nearing, Smith, Foster, David, Morgan, and Moore.

Author

Christian Thine Omuto

Details

Slope (degrees) and length of slope (metres) are relief parameters in erosion risk assessment.

References

Benavidez R, Bethana J, Maxwell D, Norton K. 2018. A review of the (Revised) Universal Soil Loss Equation ((R)USLE): with a view to increasing its global applicability and improving soil loss estimates. Hydrol. Earth Syst. Sci., 22, 6059–6086

Omuto CT and Vargas R. 2009. Combining pedometrics, remote sensing and field observations for assessing soil loss in challenging drylands: a case study of northwestern Somalia. Land Degrad. Develop. 20: 101–115

See Also

erosivFUN, erodFUN, slopeSuit

Examples

Run this code
library(sp)
sloplenFUN(60,14.88,"Renard")
newmap=suitabinput["slope"]
newmap$LSrenard=sloplenFUN(60,(newmap$slope),"Renard")
newmap$LSwsmith=sloplenFUN(60,(newmap$slope),"WSmith")
spplot(newmap["LSrenard"])
spplot(newmap["LSwsmith"])

Run the code above in your browser using DataLab