PROProduction

Workflow-grade Pro analysis with audit-ready outputs.

workflow pro

Workflow Narrative

Urban Expansion Impact Assessment

Problem It Solves

What ecological and stream-network impacts should we expect under this growth scenario, and where are priorities for mitigation?

Who It Is For

Primary User

Municipal planning departments, environmental consultancies, and stormwater authorities.

What It Does

How It Works

Why It Wins

Typical Buying Trigger

Planning approvals require quantified environmental impact evidence under multiple development scenarios.

Typical Presets

Inputs

ParameterOptionalDescription
baseline_urban, scenario_urban, streamsnoBaseline and scenario urban rasters plus stream network used for impact assessment.
optional habitat_sensitivityyesOptional habitat sensitivity layer used to weight ecological impact severity.

Outputs

ParameterTypeDescription
impact_severityGeoTIFFImpact severity raster for baseline-versus-scenario urban change.
habitat_lossGeoTIFFRaster estimate of habitat loss intensity under scenario comparison.
affected_streamsGeoPackageVector stream segments flagged as impacted under scenario conditions.
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")

impact, habitat, streams, summary = wbe.urban_expansion_impact_assessment(
    baseline_urban="data/urban_2020.tif",
    scenario_urban="data/urban_2035.tif",
    streams="data/streams.gpkg",
    habitat_sensitivity="data/habitat_sensitivity.tif",
    output_prefix="output/urban_impact",
)

print(impact)
print(habitat)
print(streams)
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