PROProduction

Workflow-grade Pro analysis with audit-ready outputs.

workflow pro

Workflow Narrative

Field Trafficability and Operation Planning

Problem It Solves

Where can equipment operate safely now, and which areas should be delayed or rerouted?

Who It Is For

Primary User

Farm operations teams and precision agriculture service providers.

What It Does

How It Works

Inputs

ParameterOptionalDescription
demnoDEM raster for terrain slope context.
soil_moisturenoSoil saturation/moisture raster normalized to [0,1].
rainfall_forecastyesOptional rainfall-risk raster normalized to [0,1].

Outputs

ParameterTypeDescription
trafficability_scoreGeoTIFFContinuous trafficability score [0,1] (higher is better).
operation_classGeoTIFFDiscrete operation class raster (1 favorable to 4 poor).
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")

traffic, op_class, summary = wbe.field_trafficability_and_operation_planning(
    dem="data/dem.tif",
    soil_moisture="data/soil_saturation.tif",
    rainfall_forecast="data/rain_risk.tif",
    output_prefix="output/field_trafficability",
)

print(traffic)
print(op_class)
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