Description Usage Arguments Details Value See Also Examples
View source: R/futurereserve.R
Future & reserve trees designation
1 2 3 4 5 | futurereserve(
inventory,
speciescriteria,
advancedloggingparameters = loggingparameters()
)
|
inventory |
Input inventory (see the inputs formats and metadata in the
|
speciescriteria |
Table of species exploitability criteria : species
names, economic interest level, minimum and maximum felling diameter, in
the same format as |
advancedloggingparameters |
Other parameters of the logging simulator
|
Future trees are all trees satisfying the following conditions:
species of 1st economic rank
DBH between 35cm ('FutureTreesMinDiameter') and the species MinFD or UpMinFD if it has been raised for its species.
Reserve trees are randomly chosen among future trees so that the number of reserve trees is equal to the number of harvested trees.
input inventory with selected future and reserve trees
(LoggingStatus = "future"/"reserve"),
for your logging criteria (SpeciesCriteria
)
Paracou6_2016
, SpeciesCriteria
,
loggingparameters
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | data(Paracou6_2016)
data(ParamCrownDiameterAllometry)
data(ForestZoneVolumeParametersTable) # The volume parameters data in the global environment
data(SpeciesCriteria)
data(DTMParacou)
data(PlotSlope)
data(MainTrails)
data(HarvestablePolygons)
inventory <- addtreedim(inventorycheckformat(Paracou6_2016),
volumeparameters = ForestZoneVolumeParametersTable)
inventory <- ONFGuyafortaxojoin(inventory, SpeciesCriteria)
harvestableOutputs <- harvestable(inventory, diversification = TRUE,
specieslax = FALSE,
topography = DTMParacou, plotslope = PlotSlope,
harvestablepolygons = HarvestablePolygons,
maintrails = MainTrails,
advancedloggingparameters = loggingparameters())
inventory <- harvestableOutputs$inventory
HVinit <- harvestableOutputs$HVinit
inventory <- selected(inventory, scenario = "manual", fuel = "0",
diversification = TRUE, specieslax = FALSE, objectivelax = TRUE,
topography = DTMParacou,
advancedloggingparameters = loggingparameters(), VO = 125,
HVinit = HVinit)$inventory
futurereserve(inventory, SpeciesCriteria)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.