PROProduction
Workflow-grade Pro analysis with audit-ready outputs.
workflow pro
Field Trafficability and Operation Planning
Where can equipment operate safely now, and which areas should be delayed or rerouted?
Farm operations teams and precision agriculture service providers.
| Parameter | Optional | Description |
|---|---|---|
| dem | no | DEM raster for terrain slope context. |
| soil_moisture | no | Soil saturation/moisture raster normalized to [0,1]. |
| rainfall_forecast | yes | Optional rainfall-risk raster normalized to [0,1]. |
| Parameter | Type | Description |
|---|---|---|
| trafficability_score | GeoTIFF | Continuous trafficability score [0,1] (higher is better). |
| operation_class | GeoTIFF | Discrete operation class raster (1 favorable to 4 poor). |
| summary | JSON | Machine-readable summary report containing run metadata, QA diagnostics, and key metrics. |
| html_report | HTML | Human-readable customer-facing report generated from the summary contract for stakeholder review and QA traceability. |
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)
Use of this function requires a license for Whitebox Workflows Professional (WbW-Pro). Please visit www.whiteboxgeo.com to purchase a license.