PROProduction
Workflow-grade Pro analysis with audit-ready outputs.
workflow pro
Forestry Structure and Biomass Analysis
Where are high-structure and high-biomass stands concentrated, and how confident are those estimates for inventory decisions?
Forestry agencies, carbon-market project developers, and natural resource consultancies.
Inventory refresh, carbon-baseline updates, or stand treatment planning needs consistent structure and biomass surfaces.
| Parameter | Optional | Description |
|---|---|---|
| input (LAS/LAZ or Lidar) | no | Input LiDAR source used to derive forest structure and biomass products. |
| profile: fast | balanced | strict | no | Operational profile controlling sensitivity and QA strictness. |
| resolution | yes | Output raster resolution, default 2.0. |
| stand_block_cells | yes | Stand aggregation block size in cells, default 12. |
| biomass_cap | yes | Upper bound applied to biomass proxy estimates, default 25.0. |
| terrain_adaptation: off | moderate | strong | yes | Biomass terrain-adaptation mode, default moderate. |
| Parameter | Type | Description |
|---|---|---|
| canopy_height_metrics | GeoTIFF | Canopy height metrics raster for forestry structure interpretation. |
| vertical_structure_class | GeoTIFF | Categorical vertical-structure class raster. |
| stand_structure_units | GeoPackage | Vector stand structure units for reporting and management. |
| biomass_proxy | GeoTIFF | Biomass proxy raster derived from structural LiDAR metrics. |
| confidence | GeoTIFF | Confidence layer quantifying reliability of modeled outputs. |
| summary | JSON | Machine-readable summary report containing run metadata, QA diagnostics, and key metrics. |
| html_report | HTML | Human-readable customer-facing report generated from the summary contract for stakeholder review and QA traceability. |
import whitebox_workflows as wbw
wbe = wbw.WbEnvironment(include_pro=True, tier="pro")
lidar = wbw.Lidar("data/forest_points.laz")
height, vclass, stands, biomass, conf, summary = wbe.forestry_structure_and_biomass_intelligence(
input=lidar,
profile="balanced",
resolution=2.0,
stand_block_cells=12,
biomass_cap=30.0,
terrain_adaptation="moderate",
output_prefix="output/forestry_structure",
)
print(height)
print(vclass)
print(stands)
print(biomass)
print(conf)
print(summary)
Use of this function requires a license for Whitebox Workflows Professional (WbW-Pro). Please visit www.whiteboxgeo.com to purchase a license.