Description Usage Arguments Details Value Examples
View source: R/IFNmanagement.R
Application of sylvicultural action as specified in prescription data
1 | IFNmanagement(treeData, prescriptionData, verbose = FALSE)
|
treeData |
A data frame with tree records in rows and columns 'ID', 'Species', 'DBH' (in cm) and 'N' (ha-1) |
prescriptionData |
A data frame with plots in rows (row names should be equal to 'ID' in tree data) and prescription options in columns:
|
verbose |
A flag to indicate console output explaining the silvicultural operations done in each plot. |
Final cuts in regular management are done from above (i.e. always starting with the largest trees). Previous cuts should be done from below, but it is left to the user.
When specifying thinning distribution in a string '15-60/30-30/40-10' means that diameters that 60% of basal area to be cut is from trees between 0 to 15 cm, 30% from trees between 15 and 30 cm and 10% from trees between 30 and 40 cm.
A list with the following elements:
action
: A string of the silvicultural action performed ('none'
for no action).
treeDataOut
: Tree data frame after the application of management actions.
treeDataCut
: Tree data frame with the trees that were removed from the input tree data.
nextPrescription
: Data frame as the input prescription data, but where the stage of final cuts may have been modified for regular management sequential actions.
1 2 3 4 5 6 7 8 | # Load example tree data (two forest plots)
data(exampleTreeData)
head(exampleTreeData)
data(examplePrescriptionData)
examplePrescriptionData
IFNmanagement(exampleTreeData, examplePrescriptionData)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.