Description Usage Arguments Details Value Examples
Static models for the wood volume (VCC, VSC, VLE & IAVC) by species and province in the IFN
1 2 3 4 5 6 7 8 9 |
x |
A data frame with tree records in rows and columns 'Provincia' (numeric), 'Species', 'DBH' (in cm), 'H' (in m) and 'N' (ha-1). Additionally, the data frame may include a column 'FC' that specifies the cubic content form for each tree. In this case, the value of parameter 'FC' is overriden. |
IFN |
Integer or integer pair to indicate order of preferred forest inventory:
( |
FC |
Vector of integers to indicate preferred cubic content forms (1 to 6)
|
code_missing |
Species code to use when equations are not available for the species recorded ("99" is Otras frondosas) |
provinceFromID |
A flag to indicate that province should be extracted from 'ID' assuming they are IFN plot codes. |
DBHclasses |
A numeric vector of DBH class limits (see breaks in function |
verbose |
A flag to indicate console output of the volume calculation process |
The volumetric equation used for each tree record depends on province, species, cubic content form and volume parameter (VCC, VSC, VLE and IAVC). Volumes are given as per hectare (i.e. the result of the volumetric equation is multiplied by the density 'N'). If cubic content form is not given in 'x', then the function iterates over the values of 'FC' until an equation is available.
If DBHclasses = NULL
, a data frame with as many rows as tree records in x
and columns:
ID
: Plot identifier
Species
: Species code
Name
: Species name
FC
: Cubic content form used to calculate volume.
VCC
: Volumen con corteza (m3/ha).
VSC
: Volumen sin corteza (m3/ha).
VLE
: Volumen de leñas (m3/ha).
IAVC
: Incremento anual del volumen con corteza (m3/ha/yr).
If DBHclasses != NULL
then an extra column DBHclass
is given and the data frame has less rows than tree records in x
.
1 2 3 4 5 6 7 | data(exampleTreeData)
IFNvolume(exampleTreeData)
# Groups the result by DBH clases
IFNvolume(exampleTreeData,
DBHclasses = seq(0, 120, by=5))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.