Canopy Cover (GEDI-style)¶
Definition¶
Canopy cover at height z is the fraction of ground area occluded by vegetation above z meters (Height Above Ground). Following GEDI, we model the gap probability using the Beer–Lambert law:
Cover(z) = 1 − exp(−k · PAI_above(z))
Where:
- k
is the extinction coefficient (default 0.5 for spherical leaf-angle assumption).
- PAI_above(z)
is the vertical integral of Plant Area Density (PAD) above height z
.
Common choices: - Tree canopy cover (GEDI-like): z = 2.0 m. - Total vegetative cover: z = 0.0 m.
Usage¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
Notes¶
- As z increases, canopy cover decreases because less foliage lies above higher thresholds.
calculate_canopy_cover
returns NaN where PAD is entirely missing in the integration range.- When tiling large EPT datasets, use
process_with_tiles(..., metric="cover", voxel_height=..., cover_min_height=2.0, cover_k=0.5)
to write GeoTIFF tiles.