PROProduction
Workflow-grade Pro analysis with audit-ready outputs.
workflow pro
Time-Series Change Analysis
Where and when are structural shifts emerging in the time series, and how confident are those signals?
Regional planning programs, policy/compliance analytics groups, and EO product teams.
A monitoring program moves from two-date snapshots to sustained time-series surveillance.
| Parameter | Optional | Description |
|---|---|---|
| input_stack (required) | no | Primary temporal raster stack used for trend and breakpoint analysis. |
| optional qa_stack | yes | Optional temporal QA stack used to weight or suppress low-quality observations. |
| algorithm_mode and thresholding controls | no | Time-series change algorithm mode and threshold controls. |
| Parameter | Type | Description |
|---|---|---|
| trend_change | GeoTIFF | Primary change-intelligence raster showing direction and magnitude of detected change. |
| breakpoint_count | GeoTIFF | Per-pixel count of detected temporal breakpoints. |
| breakpoint_date | GeoTIFF | Estimated timing raster for dominant detected breakpoint events. |
| change_confidence | GeoTIFF | Confidence surface for the time-series change detection result. |
| 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")
result = wbe.time_series_change_intelligence(
input_stack="data/time_stack.tif",
qa_stack="data/time_stack_qa.tif",
algorithm_mode="bfast",
output_prefix="output/ts_change",
)
print(result)
Use of this function requires a license for Whitebox Workflows Professional (WbW-Pro). Please visit www.whiteboxgeo.com to purchase a license.