View source: R/futurereserve.R
futurereserve | R Documentation |
designates which trees will be harvested in future seasons: "future trees", and which should be protected as seed trees: "reserve trees".
futurereserve(
inventory,
speciescriteria,
advancedloggingparameters = loggingparameters()
)
inventory |
Input inventory (see the inputs formats and metadata in the vignette) (data.frame) |
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.
in the harvestable zones
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
data(Paracou6_2016)
data(ParamCrownDiameterAllometry)
data(ForestZoneVolumeParametersTable) # The volume parameters data in the global environment
data(SpeciesCriteria)
data(DTMParacou)
data(MainTrails)
data(HarvestableAreaOutputsCable)
scenario <- "RIL2"
inventory <- addtreedim(cleaninventory(Paracou6_2016, PlotMask),
volumeparameters = ForestZoneVolumeParametersTable)
inventory <- commercialcriteriajoin(inventory, SpeciesCriteria)
harvestableOutputs <- harvestable(inventory,
topography = DTMParacou,
diversification = TRUE,
specieslax = FALSE,
plotslope = HarvestableAreaOutputsCable$PlotSlope,
maintrails = MainTrails,
harvestablepolygons = HarvestableAreaOutputsCable$HarvestablePolygons,
scenario = scenario,
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.