bakker {dplR} | R Documentation |
Basal Area Increment (Bakker)
Description
Convert multiple ring-width series to basal area increment (i.e., ring area) following the proportional method of Bakker (2005).
Usage
bakker(rwl, ancillary)
Arguments
rwl |
a |
ancillary |
A |
Details
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.
Value
A list containing the following objects:
DBHhist_raw |
|
baiBakker_raw |
|
Author(s)
Code by Stefan Klesse. Adapted for dplR by Andy Bunn.
References
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
Examples
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])