PROProduction

Classify wetlands into hydrogeomorphic classes using DEM context and wetland masks.

workflow pro

Workflow Narrative

Wetland Hydrogeomorphic Classification

Problem It Solves

Which mapped wetland regions belong to key HGM classes, and where is class confidence high enough for permitting decisions?

Who It Is For

Primary User

Environmental consulting firms, permitting agencies, and mitigation banking organizations.

What It Does

How It Works

Why It Wins

Typical Buying Trigger

Permitting or mitigation workflows require polygon deliverables with defensible classification metadata.

Typical Presets

Inputs

ParameterOptionalDescription
dem, wetland_masknoDEM and wetland mask defining candidate wetland extent and hydrogeomorphic context.
max_polygon_featuresnoMaximum number of polygon features to emit for mapped wetland units.

Outputs

ParameterTypeDescription
hgm_classGeoTIFFCategorical hydrogeomorphic wetland class raster.
confidenceGeoTIFFConfidence layer quantifying reliability of modeled outputs.
wetland_polygonsGeoPackageVectorized wetland class polygons for mapping and reporting.
summaryJSONMachine-readable summary report containing run metadata, QA diagnostics, and key metrics.
html_reportHTMLHuman-readable customer-facing report generated from the summary contract for stakeholder review and QA traceability.

Python Example

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)

License Notice

Use of this function requires a license for Whitebox Workflows Professional (WbW-Pro). Please visit www.whiteboxgeo.com to purchase a license.

Project Links

WbW Homepage User Manual Learn More