JoinBranchesToStem {treeglia} | R Documentation |
The complex architecture of broadleaf trees requires stem-analysis be computed on each large branch. To get an overall picture of tree increments the stem-analyses should be joined together.
JoinBranchesToStem(RWdata, Tree.object, branches)
RWdata |
a data.frame holding the set of ring-widths. It can be imported from a csv text file through ImportRW . |
Tree.object |
a data.frame holding tree data. This object is easily created through BuildTreeObject . |
branches |
a list of dataframe objects holding the stem analysis of the stem and of each branch. The list can be created with the c function |
It should be noted that the current version of tReeglia does not support different tree data objects for the branches of trees. As a result, it is not possible to assign different volume reduction coefficients, densities, and carbon contents to individual branches of the tree.
Marco Bascietto
# Recall and attach RW data data(Lei301) attach(Lei301) SA.1 <- JoinBranchesToStem(RW.1A, Tree.features.1, c(SA.1.a,SA.1.b)) detach(Lei301)