bakker | R Documentation |
Convert multiple ring-width series to basal area increment (i.e., ring area) following the proportional method of Bakker (2005).
bakker(rwl, ancillary)
rwl |
a |
ancillary |
A |
This converts ring-width series (mm) to ring-area series (mm squared) (aka basal area increments) based on the diameter of the tree, the missing distance to the pith and the missing number of rings to the pith, following the proportional method for reconstructing historical tree diameters by Bakker (2005).
It prevents bai.out
transformations from producing negative increments when the sum of all ring widths in a series is larger than DBH/2. It prevents bai.in
transformations from producing too small values when the sum of all ring widths in a series is smaller than DBH/2.
A list containing the following objects:
DBHhist_raw |
|
baiBakker_raw |
|
Code by Stefan Klesse. Adapted for dplR by Andy Bunn.
Bakker, J.D., 2005. A new, proportional method for reconstructing historical tree diameters. Canadian Journal of Forest Research 35, 2515–2520. https://doi.org/10.1139/x05-136
data(zof.rwl)
data(zof.anc)
zof.bakker <- bakker(rwl = zof.rwl,ancillary = zof.anc)
zof.bai <- zof.bakker$baiBakker_raw
# first series bai
yrs <- time(zof.rwl)
plot(yrs,zof.bai[,1],type="l",
xlab="Year",
ylab=expression(BAI~(mm^2)),
main = colnames(zof.bai)[1])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.