Description Usage Arguments Details Value See Also Examples
The function tells you the harvestable volume in the plot, and which trees are harvestable according to your harvestability criteria
1 2 3 4 5 6 7 8 9 10 | harvestable(
inventory,
topography,
harvestablepolygons,
maintrails,
plotslope,
diversification,
specieslax = FALSE,
advancedloggingparameters = loggingparameters()
)
|
inventory |
Input inventory (see the inputs formats and metadata in the
|
topography |
Digital terrain model (DTM) of the inventoried plot (LiDAR
or SRTM) ( |
harvestablepolygons |
Accessible area of the inventoried plot
(default: |
maintrails |
Main trails defined at the entire harvestable area (sf polylines) |
plotslope |
Slopes (in radians) of the inventoried plot (with a
neighbourhood of 8 cells) (default: |
diversification |
Taking of other species in addition to the main
commercial species (2 levels of commercial species in the
|
specieslax |
Allow diversification if stand is too poor, = FALSE by default (logical) |
advancedloggingparameters |
Other parameters of the logging simulator
( |
Trees will be designated as "harvestable" if they:
belonging to species of 1st economic rank or more if diversification
DBH between the MinFD and the MaxFD.
not isolated ( >100m ('IsolateTreeMinDistance' in
loggingparameters
)) from other individuals of the same
species in the aggregative species case (SpeciesCriteria
,
'Aggregative' column).
on slopes < 22% ('TreeMaxSlope'in loggingparameters
)
off the main trails.
Trees with visible defects are identified ('VisiblyDefectModel' in 'advancedloggingparameters' argument) among the trees with harvestable criteria and are therefore considered 'non-harvestable'.
input inventory with new columns:
The exploitability criteria ("DistCrit", "Slope"(in radians), "SlopeCrit"), and if they are validated for each of the trees ("LoggingStatus").
The probability of a tree having visible defects ("VisibleDefectProba") and the visible defect trees ("VisibleDefect").
The function returns the harvestable volume too, in the plot for these criteria.
Paracou6_2016
, SpeciesCriteria
,
DTMParacou
, PlotSlope
,
loggingparameters
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | data(Paracou6_2016)
data(DTMParacou)
data(PlotSlope)
data(SpeciesCriteria)
data(HarvestablePolygons)
data(MainTrails)
inventory <- addtreedim(inventorycheckformat(Paracou6_2016),
volumeparameters = ForestZoneVolumeParametersTable)
inventory <- ONFGuyafortaxojoin(inventory, SpeciesCriteria)
harvestableOutputs <- harvestable(inventory, topography = DTMParacou,
harvestablepolygons = HarvestablePolygons, maintrails = MainTrails,
plotslope = PlotSlope, diversification = TRUE, specieslax = FALSE,
advancedloggingparameters = loggingparameters())
new <- harvestableOutputs$inventory
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.