PROProduction
Workflow-grade Pro analysis with audit-ready outputs.
workflow pro
In-Season Crop Stress Intervention Planning
Where should interventions be prioritized this week to limit stress-driven yield loss?
Precision agronomy service providers and large production farms.
| Parameter | Optional | Description |
|---|---|---|
| ndvi | no | NDVI/vigor raster normalized to [0,1]. |
| canopy_temperature | yes | Optional thermal-stress raster normalized to [0,1]. |
| soil_moisture | yes | Optional moisture-deficit raster normalized to [0,1]. |
| Parameter | Type | Description |
|---|---|---|
| intervention_priority | GeoTIFF | Continuous intervention-priority score [0,1]. |
| intervention_class | GeoTIFF | Discrete intervention class raster (1 low to 4 urgent). |
| 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")
priority, classes, summary = wbe.in_season_crop_stress_intervention_planning(
ndvi="data/ndvi_current.tif",
canopy_temperature="data/canopy_temp_stress.tif",
soil_moisture="data/moisture_deficit.tif",
output_prefix="output/in_season_stress",
)
print(priority)
print(classes)
print(summary)
Use of this function requires a license for Whitebox Workflows Professional (WbW-Pro). Please visit www.whiteboxgeo.com to purchase a license.