Generate a lookup table for soil, vegetation and hydrological properties

MakeLoopkupTable(case = "default")

Arguments

case
string of characters. It can be one of the following options: "default", "Severn&Wye", "Good woods + Good pasture", "Good woods + Fair pasture", "Fair woods + Poor pasture".

Value

data.frame containing 10 rows (vegetation classes) and the following columns: Class (vegetation), Subclass (vegetation), Code, SoilA, SoilB, SoilC, SoilD.

Examples

## Not run: ------------------------------------ # dfLookup <- MakeLoopkupTable() # dfLookupSW <- MakeLoopkupTable("Severn&Wye") # dfLookupGWGP <- MakeLoopkupTable("Good woods + Good pasture") # dfLookupGWFP <- MakeLoopkupTable("Good woods + Fair pasture") # dfLookupFWPP <- MakeLoopkupTable("Fair woods + Poor pasture") ## ---------------------------------------------