View source: R/leaf_area_density_function.R
leaf_area_density | R Documentation |
Function to reconstruct leaf area density (LAD) per volume based on the MacArthur-Horn equation, which inverts the Beer-Lambert principle of light extinction. It provides an estimate of LAD per voxel.
leaf_area_density(
pc,
xy.res = 1,
z.res = 1,
k = 1,
normalized = F,
ground.class = 2
)
pc |
Point cloud in data.table, data.frame or LAS format (important: column names need to be X, Y and Z) |
xy.res |
Side length of a voxel in the horizontal plain |
z.res |
Side length of a voxel in vertical direction |
k |
Conversion coefficient (light extinction coefficient) |
normalized |
Boolean whether the point cloud is terrain normalized or not. For normalized point clouds all points of height < 0.5 m are considered ground points. For non-normalized point clouds a column "Classification" is required and ground points should be labelled. |
ground.class |
Only required for non-normalized point clouds. It provides the numeric code of ground points in the "Classification" column. The standard value is 2. |
data.table with each row representing one voxel. Coordinates represent voxel centers and LAD and cumulative LAI are given for each voxel
Nikolai Knapp
in progress
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.