
Construct a Land Use type
landUseType.RdDefines one land use entry for LandUsePlus. Each land use has a
unique name and mapCode, an allowHarvest flag, an optional
preventEstablishment flag, and one or more landCoverChange()
blocks describing what happens to existing trees.
Usage
landUseType(
name,
mapCode,
allowHarvest = TRUE,
preventEstablishment = FALSE,
changes = list(),
plant = NULL
)Arguments
- name
Character. Land-use name (no internal whitespace; quoted automatically when written).
- mapCode
Integer. Numeric code matching the input raster.
- allowHarvest
Logical (or
"yes"/"no"). Whether harvesting is permitted. Defaults toTRUEto match the LU+ v4 user-guide default.- preventEstablishment
Logical. When
TRUE, the keywordPreventEstablishmentis emitted (which blocks tree establishment).- changes
List of
LandCoverChangeobjects (seelandCoverChange()).- plant
(Optional) Character. Species code planted after change.
See also
Other Land Use Plus helpers:
LandUsePlus,
cohortSelector(),
insertCohortSelector(),
insertLandCoverChange(),
insertLandUseType(),
landCoverChange()