Description Usage Arguments Details Value Examples
Compute tree dimensions (tree and crown height and diameter, harvestable volume, wood density, and AGB)
1 2 3 4 5 6 | addtreedim(
inventory,
volumeparameters,
crowndiameterparameters = ParamCrownDiameterAllometry,
advancedloggingparameters = loggingparameters()
)
|
inventory |
Input inventory (see the inputs formats and metadata in the
|
volumeparameters |
Parameters of the tree volume tables (in the same
format of |
crowndiameterparameters |
Parameters of crown diameter allometry (in the
same format of |
advancedloggingparameters |
Other parameters of the logging simulator
|
'addtreedim' compute some tree dimensions with the 'advancedloggingparameters' argument:
Tree height (in m) ('TreeHeightAllometry')
Tree Harvestable Volume (m^3) ('TreeHarvestableVolumeAllometry')
Trunk height (in m) ('TrunkHeightAllometry')
Crown height (in m)
Crown diameter (in m) ('CrownDiameterAllometry')
Wood density (g/cm^3) (by BIOMASS package)
Tree above-ground biomass (AGB) (in Mg) (by BIOMASS package)
The inventory (data.frame) with additional variables: TreeHeight (m), TreeHarvestableVolume (m^3), TrunkHeight (m), CrownHeight (m), CrownDiameter (m), estimated 'WoodDensity' (g/cm^3) and tree above-ground biomass ('AGB') (in Mg)
1 2 3 4 5 6 7 8 9 10 | data(Paracou6_2016)
data(ForestZoneVolumeParametersTable) # The volume parameters data in the global environment
data(ParamCrownDiameterAllometry)
if (!("DBH" %in% names(Paracou6_2016))) {
tibble::add_column(Paracou6_2016, DBH = NA) #if DBH doesn't exist create it
Paracou6_2016$DBH = Paracou6_2016$CircCorr/pi} # and calculate it
Paracou6_2016 <- dplyr::filter(Paracou6_2016, DBH >= 10)
addtreedim(Paracou6_2016, volumeparameters = ForestZoneVolumeParametersTable)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.