Description Usage Arguments Details Value See Also Examples
Selection of trees to log
1 2 3 4 5 6 7 8 9 10 11 12 |
inventory |
Input inventory (see the inputs formats and metadata in the
|
topography |
Digital terrain model (DTM) of the inventoried plot (LiDAR
or SRTM) ( |
scenario |
Logging scenario: "RIL1", "RIL2broken", "RIL2", "RIL3",
"RIL3fuel", "RIL3fuelhollow" or "manual"(character) (see the
|
fuel |
Fuel wood exploitation: no exploitation = "0", exploitation of damage and unused part of logged trees for fuel = "1", exploitation of hollow trees, damage and and unused part of the log for fuel = "2" |
diversification |
TPossibility to log other species in addition to the
main commercial species (species with a value of 2 for commercial in the
|
VO |
Objective volume for the entire area of the plot (numeric value) |
HVinit |
Harvestable volume in the plot for the chosen scenario
( |
specieslax |
Allow diversification if the stand is too poor to reach the objective volume without diversification, = FALSE by default (logical) |
objectivelax |
Allow exploitation in case of non-achievement of the objective volume (if stand too poor), = FALSE by default (logical) |
advancedloggingparameters |
Other parameters of the logging simulator
|
This function allows the selection of trees to be exploited among the exploitable trees. It also informs about the trees that were finally found to be hollow during the probe. If fuel = 2, the hollow trees will be harvested and are therefore included in the objective volume. If fuel = 0 or 1, the hollow trees will not be exploited, so the function looks for other trees to reach the objective volume (if possible).
If the harvestable volume is higher than the objective volume, MinFD of the 1st economic rank species is increased. If this is not enough and if diversification is allowed, MinFD of 2nd economic level species is increased. Then, the trees to be harvested are chosen in decreasing order of volume, until the objective volume is reached.
If the harvestable volume is lower than the objective volume, diversification can be applied if it was not already applied ('specieslax') (trees of all commercial ranks are selected in decreasing order of volume until the objective volume is reached), or harvesting can continue despite an unreached objective volume, or be abandoned ('objectivelax')
Input inventory with
The trees selected for harvesting ("Selected")
if the Minimum Felling Diameter (MinFD) of their species has been raised ("Up")
The cumulative harvestable volume of harvestable trees("VolumeCumSum").
The probability of a tree being probed hollow ("ProbedHollowProba") and the
probed hollow trees ("ProbedHollow").
See the outputs metadata in the vignette
2 sets of spatial points: (HollowTrees and EnergywoodTrees)
Paracou6_2016
, SpeciesCriteria
,
DTMParacou
, loggingparameters
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | data(Paracou6_2016)
data(DTMParacou)
data(PlotSlope)
data(HarvestablePolygons)
data(Maintrails)
inventory <- addtreedim(inventorycheckformat(Paracou6_2016),
volumeparameters = ForestZoneVolumeParametersTable)
inventory <- ONFGuyafortaxojoin(inventory, SpeciesCriteria)
harvestableOutputs <- harvestable(inventory, topography = DTMParacou,
diversification = TRUE, specieslax = FALSE, plotslope = PlotSlope,
harvestablepolygons = HarvestablePolygons, maintrails = MainTrails,
advancedloggingparameters = loggingparameters())
inventory <- harvestableOutputs$inventory
HVinit <- harvestableOutputs$HVinit
selecInventory <- selected(inventory, topography = DTMParacou,
scenario = "manual", fuel = "2", diversification = TRUE,
VO = 125, HVinit = HVinit, specieslax = FALSE, objectivelax = TRUE,
advancedloggingparameters = loggingparameters())$inventory
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.