Skip to content

Commit 33d9523

Browse files
committed
add sapling crown width adjustment factors
1 parent dc03363 commit 33d9523

4 files changed

Lines changed: 111 additions & 2 deletions

File tree

R/data.R

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,12 @@
3333
#' Common name of surrogate species if applicable}
3434
#' \item{\code{b0}}{\code{\link{numeric}}, Regression b0 coefficient}
3535
#' \item{\code{b1}}{\code{\link{numeric}}, Regression b1 coefficient}
36-
#' \item{\code{b1}}{\code{\link{numeric}}, Regression b2 coefficient}
36+
#' \item{\code{b2}}{\code{\link{numeric}}, Regression b2 coefficient}
3737
#' \item{\code{reference}}{\code{\link{character}},
3838
#' Literature source of the species coefficients (see References)}
3939
#' }
4040
#' @examples
41+
#' # Abies grandis
4142
#' cw_coef[cw_coef$SPCD == 17, ]
4243
#' @source
4344
#' Toney et al. 2009. A stem-map model for predicting tree canopy cover of
@@ -58,6 +59,53 @@
5859
"cw_coef"
5960

6061

62+
#' Sapling crown width adjustment factors
63+
#'
64+
#' A species-specific lookup table of estimated crown width (CW) adjustment
65+
#' factors for saplings based on data from Bragg (2001).
66+
#'
67+
#' @details
68+
#' FIA "saplings" are trees less than 5.0 in. (12.7 cm) diameter but greater
69+
#' than or equal to 1.0 in. (2.54 cm) diameter. In general, the data available
70+
#' to fit regression models predicting crown width (e.g., Bechtold 2003, 2004,
71+
#' see [cw_coef]) do not include trees with diameter less than 5.0 in.
72+
#' (12.7 cm). Extrapolating beyond the range of the model fitting data is
73+
#' undesirable, especially since a quadratic term is used in the regression
74+
#' equations for some species.
75+
#'
76+
#' Adjustment is based on the proportion of crown width predicted at 5-in.
77+
#' (12.7 cm), at each 1-in. (2.54 cm) increment below that. Intermediate values
78+
#' are interpolated in the crown width prediction method. Mean adjustment
79+
#' factors are used if a species-specific adjustment is not available.
80+
#'
81+
#' @format ## `cw_sapling_adj`
82+
#' A data frame with 23 rows and 5 columns:
83+
#' \describe{
84+
#' \item{\code{SPCD}}{\code{\link{integer}}, FIA tree species code}
85+
#' \item{\code{adj_1inch}}{\code{\link{numeric}},
86+
#' CW adjustment factor at 1 in. DIA relative to 5 in. DIA}
87+
#' \item{\code{adj_2inch}}{\code{\link{numeric}},
88+
#' CW adjustment factor at 2 in. DIA relative to 5 in. DIA}
89+
#' \item{\code{adj_3inch}}{\code{\link{numeric}},
90+
#' CW adjustment factor at 3 in. DIA relative to 5 in. DIA}
91+
#' \item{\code{adj_4inch}}{\code{\link{numeric}},
92+
#' CW adjustment factor at 4 in. DIA relative to 5 in. DIA}
93+
#' }
94+
#' @examples
95+
#' # Tsuga canadensis
96+
#' cw_coef[cw_coef$SPCD == 261, ]
97+
#'
98+
#' cw_sapling_adj[cw_sapling_adj$SPCD == 261, ]
99+
#' @source
100+
#' Toney et al. 2009. A stem-map model for predicting tree canopy cover of
101+
#' Forest Inventory and Analysis (FIA) plots.
102+
#' \url{https://research.fs.usda.gov/treesearch/33381}.
103+
#' @references
104+
#' Bragg, D.C. 2001. A local basal area adjustment for crown width prediction.
105+
#' _Northern Journal of Applied Forestry_ 18(1):22-28.
106+
"cw_sapling_adj"
107+
108+
61109
#' Tree list for a plot in a loblolly pine plantation
62110
#'
63111
#' An example tree list for an FIA plot in a loblolly pine plantation.

data/cw_sapling_adj.rda

502 Bytes
Binary file not shown.

man/cw_coef.Rd

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/cw_sapling_adj.Rd

Lines changed: 60 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)