PROProduction

Workflow-grade Pro analysis with audit-ready outputs.

workflow pro

Workflow Narrative

Soil Landscape Classification

Problem It Solves

Which terrain-defined landform units dominate the area, and how can they guide management zoning or sampling strategy?

Who It Is For

Primary User

Agronomy/land capability groups, environmental consulting teams, and land resource agencies.

What It Does

How It Works

Why It Wins

Typical Buying Trigger

A land management or agronomy program needs terrain-driven zones for sampling design or variable-rate planning.

Typical Presets

Inputs

ParameterOptionalDescription
input DEMnoInput DEM used for terrain-derivative and landform classification workflows.
flat/profile/plan thresholdsnoCurvature and surface-form thresholds used to separate landform classes.
fine_scale, coarse_scalenoMultiscale analysis windows used to capture local and broad terrain structure.
optional landform_polygons_outputyesOptional switch/path to emit vectorized landform polygons.

Outputs

ParameterTypeDescription
landform_unitsGeoTIFFCategorical landform unit raster from terrain analysis.
multiscale_signatureGeoTIFFMultiscale terrain-signature raster for landscape interpretation.
landform_polygonsoptional vectorOptional vectorized landform polygons for cartographic/reporting use.
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")

landform, signature, polygons, summary = wbe.soil_landscape_classification(
    input="data/dem.tif",
    fine_scale=2.0,
    coarse_scale=8.0,
    output_prefix="output/soil_landscape",
    landform_polygons_output="output/landforms.gpkg",
)

print(landform)
print(signature)
print(polygons)
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