View source: R/f_calc_patch_tree.R
f.calc_tree_patch | R Documentation |
Calculate Patch LAD fpr PALM-4U
f.calc_tree_patch(
lai = array(),
canopy_height = array(),
dz,
alpha = 5,
beta = 3,
fillvalue = -9999.9
)
lai |
Array. Containts Leaf Area Index for respective patches. |
dz |
Integer. Grid dimension in y direction |
alpha |
Numeric. A Parameter for LAD calculation. See source. |
beta |
Numeric. A Parameter for LAD calculation. See Source. |
fillvalue |
Numeric. Fillvalue for the array |
canopy_heigh |
Array. Contains tree height for respective patches. |
Array. Filled with LAD for each tree patch.
lai <- array(2, c(5,5))
canopy <- array(10, c(5,5))
dz <- 2
lad <- f.calc_tree_patch(lai, canopy, dz)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.