PROProduction

Workflow-grade Pro analysis with audit-ready outputs.

workflow pro

Workflow Narrative

River Corridor Health Assessment

Problem It Solves

Which river reaches are stable versus at-risk, and where should restoration action be prioritized?

Who It Is For

Primary User

Watershed councils, conservation authorities, and environmental consulting groups.

What It Does

How It Works

Why It Wins

Typical Buying Trigger

A watershed plan needs rapid reach triage with GIS-ready outputs for restoration budgeting.

Typical Presets

Inputs

ParameterOptionalDescription
demnoDigital elevation model used as the terrain reference surface.
streamsnoVector stream network used for corridor health and restoration targeting.
profile: fast | balanced | conservativenoProcessing profile controlling sensitivity, quality strictness, and runtime tradeoffs.

Outputs

ParameterTypeDescription
erosion_pressureGeoTIFFErosion pressure raster for river corridor condition assessment.
corridor_confidenceGeoTIFFConfidence surface for river corridor health interpretation.
stream_health_scoreGeoPackageStream-reach health score output summarizing corridor condition.
restoration_zonesGeoPackagePriority vector polygons highlighting restoration intervention zones.
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")

erosion, confidence, health, restoration, summary = wbe.river_corridor_health_assessment(
    dem="data/dem.tif",
    streams="data/streams.gpkg",
    profile="balanced",
    output_prefix="output/river_health",
)

print(erosion)
print(confidence)
print(health)
print(restoration)
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