vegTypeGenerator | R Documentation |
cohortData
This function is a simplification of vegTypeMapGenerator
and instead of generating a map, it adds the vegetation type column
to the cohortData
table.
vegTypeGenerator(
x,
vegLeadingProportion = 0.8,
mixedType = 2,
sppEquiv = NULL,
sppEquivCol,
pixelGroupColName = "pixelGroup",
doAssertion = getOption("LandR.assertions", TRUE),
...
)
x |
A |
vegLeadingProportion |
Numeric between 0-1, determining the relative biomass threshold a species needs to pass to be considered "leading". |
mixedType |
An integer defining whether mixed stands are: not differentiated (0), any kind of species admixture (1), or deciduous mixed with conifer (2; default). |
sppEquiv |
table with species name equivalencies between the kNN and final naming formats.
See |
sppEquivCol |
the column name to use from |
pixelGroupColName |
Name of the column in |
doAssertion |
A logical indicating whether some internal tests should be run to
ensure the function is running correctly.
Default: |
... |
Additional arguments. |
x
with a new column, 'leading', coding the vegetation type
of each group defined by pixelGroupColName
Eliot McIntire, Ceres Barros, Alex Chubaty
library(data.table)
x <- data.table(
pixelGroup = rep(1:2, each = 2), B = c(100, 200, 20, 400),
speciesCode = rep(c("Pice_Gla", "Popu_Tre"), 2)
)
vegTypeGenerator(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.