PROProduction
Classify wetlands into hydrogeomorphic classes using DEM context and wetland masks.
workflow pro
Wetland Hydrogeomorphic Classification
Which mapped wetland regions belong to key HGM classes, and where is class confidence high enough for permitting decisions?
Environmental consulting firms, permitting agencies, and mitigation banking organizations.
Permitting or mitigation workflows require polygon deliverables with defensible classification metadata.
| Parameter | Optional | Description |
|---|---|---|
| dem, wetland_mask | no | DEM and wetland mask defining candidate wetland extent and hydrogeomorphic context. |
| max_polygon_features | no | Maximum number of polygon features to emit for mapped wetland units. |
| Parameter | Type | Description |
|---|---|---|
| hgm_class | GeoTIFF | Categorical hydrogeomorphic wetland class raster. |
| confidence | GeoTIFF | Confidence layer quantifying reliability of modeled outputs. |
| wetland_polygons | GeoPackage | Vectorized wetland class polygons for mapping and reporting. |
| 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")
hgm, conf, polys, summary = wbe.wetland_hydrogeomorphic_classification(
dem="data/dem.tif",
wetland_mask="data/wetlands.tif",
max_polygon_features=10000,
output_prefix="output/wetland_hgm",
)
print(hgm)
print(conf)
print(polys)
print(summary)
Use of this function requires a license for Whitebox Workflows Professional (WbW-Pro). Please visit www.whiteboxgeo.com to purchase a license.