PROProduction

Workflow-grade Pro analysis with audit-ready outputs.

workflow pro

Workflow Narrative

Landslide Susceptibility Assessment

Problem It Solves

Which areas present elevated slope-failure risk today, and where is trigger pressure most concerning?

Who It Is For

Primary User

Geological surveys, transportation agencies, and hazard consulting teams.

What It Does

How It Works

Why It Wins

Typical Buying Trigger

A public or infrastructure program requires defensible first-pass landslide risk zoning.

Typical Presets

Inputs

ParameterOptionalDescription
demnoDigital elevation model used as the terrain reference surface.
optional rainfall_intensityyesOptional rainfall forcing raster used to refine landslide trigger pressure estimation.
profile: fast | balanced | conservativenoProcessing profile controlling sensitivity, quality strictness, and runtime tradeoffs.
susceptibility_thresholdnoThreshold used to convert continuous susceptibility into risk-zone candidates.

Outputs

ParameterTypeDescription
susceptibilityGeoTIFFLandslide susceptibility raster used to identify unstable terrain.
trigger_pressureGeoTIFFTrigger-pressure raster indicating forcing required to initiate failures.
confidenceGeoTIFFConfidence layer quantifying reliability of modeled outputs.
risk_zonesGeoPackagePriority vector polygons highlighting 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")

sus, trig, conf, zones, summary = wbe.landslide_susceptibility_assessment(
    dem="data/dem.tif",
    rainfall_intensity="data/rainfall_intensity.tif",
    profile="balanced",
    susceptibility_threshold=0.65,
    max_zone_features=5000,
    output_prefix="output/landslide",
)

print(sus)
print(trig)
print(conf)
print(zones)
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