This function computes summary statistics from a data.frame containing
tree-level information as returned by tree_extraction.
Usage
std_tree_metrics(x, area_ha = NA)
Value
a data.frame with one line containing the following tree metrics:
Tree_meanH: mean height of detected tree apices (m)
Tree_sdH: standard deviation of heights of detected tree apices (m)
Tree_giniH: Gini index of heights of detected tree apices
Tree_density: density of detected tree apices (/ha)
TreeInf10_density: density of detected trees apices with h<=10 (/ha)
TreeSup10_density: density of detected trees apices with h>10 (/ha)
TreeSup20_density: density of detected trees apices with h>20 (/ha)
TreeSup30_density: density of detected trees apices with h>30 (/ha)
Tree_meanCrownSurface: mean crown surface of detected trees
Tree_meanCrownVolume: mean volume of detected trees
TreeCanopy_meanH: mean height of union of crowns of detected trees
Arguments
x
data.frame containing the following columns for each line (segmented tree):
h (height), s (crown surface), v (crown volume), typically
returned by tree_extraction. sp (crown surface inside region
of interest) and vp (crown volume in region of interest) are not used
in this function.