PROProduction

Workflow-grade Pro analysis with audit-ready outputs.

workflow pro

Workflow Narrative

In-Season Crop Stress Intervention Planning

Problem It Solves

Where should interventions be prioritized this week to limit stress-driven yield loss?

Who It Is For

Primary User

Precision agronomy service providers and large production farms.

What It Does

How It Works

Inputs

ParameterOptionalDescription
ndvinoNDVI/vigor raster normalized to [0,1].
canopy_temperatureyesOptional thermal-stress raster normalized to [0,1].
soil_moistureyesOptional moisture-deficit raster normalized to [0,1].

Outputs

ParameterTypeDescription
intervention_priorityGeoTIFFContinuous intervention-priority score [0,1].
intervention_classGeoTIFFDiscrete intervention class raster (1 low to 4 urgent).
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")

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)

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