grounded-weather-forecast
Station-grounded blending of multi-provider weather forecasts: bias correction, anchoring, and blending judged by a rolling-origin backtest leaderboard.
grounded-weather-forecast turns two SQLite files — a personal weather station's minute-level observation log (ambientweather2sqlite) and a multi-provider forecast archive (omni-weather-forecast-apis) — into three forecast products for one location:
- next hour, by minute — an anchored nowcast blending the live station reading into the hourly blend, plus native minutely precipitation where providers supply it
- next day, by hour
- next 10 days, by day
How it works
Three composable stages. Nothing ships because it sounds good — a stage is used for a given variable and lead time only if it wins that slice on the backtest leaderboard.
- Grounding — per-source correction toward the station, fitted per variable × lead bucket. Most providers repackage the same global models, so their shared bias is invisible to any weighting scheme; only correction removes it. A bias correction by default — the slope is opt-in, for reasons the data taught us (see ADR 0004).
- Blending — combining grounded sources: equal weight, trimmed mean (drops the extremes per row — robustness with zero parameters), inverse-MSE and inverse-MAE weighting, gradient-boosted stacking, and online expert aggregation with sleeping experts (ragged provider horizons need no special casing) and fixed share (so a provider that silently swaps its backend model loses weight in days). Grounding also comes in a MAE-consistent median-intercept variant.
- Anchoring — short-lead correction toward the latest live observation, decaying exponentially with lead. Your thermometer is the one input no provider has.
Ground truth is QC'd (plausibility bounds, spike and flatline filters) and aggregated from minute data. Scoring uses MAE/RMSE/bias, CRPS, and Brier/reliability for precipitation probability, with Diebold–Mariano significance per variable × lead bucket, under strict rolling-origin splits. Live and synthetic (backfilled) data are never pooled.
Installation
grounded-weather-forecast requires Python 3.13 or newer. Install the command in an isolated environment with uv:
uv tool install grounded-weather-forecast
grounded-weather-forecast --version
Usage
Download the example configuration,
save it as config.toml, and point it at your two SQLite files, coordinates,
and elevation:
curl -L https://raw.githubusercontent.com/hbmartin/grounded-weather-forecast/main/config.example.toml \
-o config.toml
# 1. Inspect the station truth: per-channel bounds/spike/flatline flag counts
# and hourly/daily coverage after QC.
grounded-weather-forecast qc
# 2. Optional: poll the Open-Meteo Ensemble API before building matrices.
# Real ensemble spread becomes leakage-safe ens__* feature columns. Run
# this once per model cycle; configure [ensembles].models.
grounded-weather-forecast ingest-ensembles # --models <ids>
# 3. Materialize truth tables, canonical long frames, and the supervised
# hourly/daily matrices as parquet + manifest.json under [dataset].dir.
# Re-run this after every ensemble ingest before backtesting or serving.
grounded-weather-forecast build-dataset
# 4. Optional cold start. A forecast archive is only useful once it holds months
# of stored *vintages*, so a new one can say nothing yet. Open-Meteo's
# Previous Runs API backfills real archived forecasts (leads of exactly 1-7
# days) for open NWP models, tagged `synthetic` and never pooled with live.
grounded-weather-forecast backfill --end 2026-07-12 # --models, --start, --chunk-days
# A second backfill provider reads dynamical.org's free Zarr archives of
# FULL forecast cycles (GEFS since 2020, AIFS-ENS since 2025-07) at native
# 3-6h steps — populating the sub-24h lead buckets Previous Runs cannot.
# For an installed CLI, put the extra in that same tool environment:
uv tool install --force 'grounded-weather-forecast[backfill]'
grounded-weather-forecast backfill --provider dynamical --start 2026-06-01
# From a checkout instead:
# uv sync --extra backfill
# uv run grounded-weather-forecast backfill --provider dynamical --start 2026-06-01
# 5. Study whether each hourly variable should use instantaneous or interval-mean
# truth. Misalignment masquerades as provider bias; this measures it.
grounded-weather-forecast alignment
# 6. Rolling-origin backtest. Identified evaluation runs land in
# [dataset].dir/scores without overwriting other windows/runs.
grounded-weather-forecast backtest --source live # or --source synthetic
# --methods all|<ids> --products hourly,daily --window expanding|rolling
# --hourly-variables ... --daily-variables ... --semantics auto|inst|mean
# 6b. Optional: cross-check station truth against lapse-adjusted Synoptic
# neighbors (free-signup token) and fit the radiation-shield error model.
# A drifting or decorrelating sensor alarms here before it poisons truth.
grounded-weather-forecast truth-qc # --days 30
# 7. Leaderboards (per-slice skill with Diebold-Mariano, aggregate, winners,
# absolute error, consumer %-within-3F), the provider error-correlation
# matrix, and self-verification of forecasts this system actually served.
# Also writes reports/dashboard.html — a fully offline, self-contained
# operator console (seven zones: liveness, data trust, learning
# readiness, evaluation, model internals, serving, explainability) with
# threshold alerts sourced from the existing config knobs.
grounded-weather-forecast report
# 8. Emit the current blended forecast (minutely + hourly + daily) as JSON.
# Schema version 4 carries ready/degraded status plus per-variable release
# identity and truth semantics. It is appended atomically to a history so
# each row is later scored against the same truth target used to select and
# fit it — backtest skill is an estimate, this is the measurement.
grounded-weather-forecast predict # to stdout
grounded-weather-forecast predict --out forecast.json
# --method auto|<id> --now <iso> --no-history --semantics ...
# Unarchived --now reconstructions degrade to equal_weight when the historical
# release's implementation is unavailable; archived documents replay exactly.
Every command takes --config <path> (default config.toml). Once that
configuration loads successfully, the invocation appends one row to
[dataset].dir/runs.parquet — a rolling ledger (command, timing, exit
status, dataset/config fingerprints) that the dashboard renders as the pipeline
heartbeat, kept to the last 90 days and 50,000 rows so it stays bounded under a
scheduled cadence. Parser and configuration-loading failures cannot be recorded
because the ledger destination comes from that configuration. Each predict run
additionally snapshots the fitted models' internals (grounding coefficients,
expert weights, GBM importances, anchoring decay) into
[artifacts].dir/observability/ for the dashboard's glass-box zone, reclaiming
snapshot trees superseded by a newer dataset fingerprint; snapshot failures
never affect serving.
Backtest evidence records the package version plus a digest of the installed
first-party Python sources. The live demotion gate pools recent served rows only
when configuration, method, implementation identity, provider source set, and
the exact serving feature schema and per-variable truth semantics all match.
predict --semantics selects matching evaluation evidence and records the
actual target on every hourly row; a changed ensemble, truth target, or
implementation cannot inherit an incompatible verdict. The flag binds only
variables with dual truth semantics — single-truth variables (wind_gust_ms,
precip_mm, pop) always score against instantaneous truth, so a mean run
cannot strand their evidence. Score files written before feature-schema
identity are ignored by selection; re-run backtest after upgrading to
restore promotions.
Status
Alpha, and honest about it: with a young forecast archive the backtest reports
that it has no folds rather than inventing a leaderboard, and predict refuses
to serve from stale provider data rather than guessing.
Documentation
- Getting started — install, configure, first forecast
- Advanced usage — backfilling, tuning, reading the leaderboard, adding your own blending method
- Theory and concepts — why grounding beats weighting, what the forecast-combination puzzle costs you, and how the evaluation is kept honest
- Architecture — layers, contracts, storage, libraries, leakage defences
- Limitations — what this cannot do, and the three real bugs the evaluation harness caught. Read before trusting any number.
- Scheduling — launchd templates and cadence rationale for the polling, ensemble-ingest, predict, and nightly-retrain crons
docs/changes-0.4.0.md— 0.4.0 dashboard + instrumentation changesdocs/changes-0.3.0.md— 0.3.0 migration instructions and change rationale (scoring semantics changed; re-run backtest before comparing)CONTEXT.md— project glossary (issue time, valid time, lead, grounding, anchoring, …)docs/adr/— architecture decision records
Development
Requires Python 3.13+ and uv.
uv sync --dev
uv run ruff check src --fix && uv run ruff format src tests
uvx --from semgrep==1.170.0 semgrep scan --test --config semgrep/provider-qc.yml semgrep/tests/provider_qc_grouping.py
uvx --from semgrep==1.170.0 semgrep scan --metrics=off --error --config semgrep/provider-qc.yml src/grounded_weather_forecast/dataset/matrix.py
uvx --from semgrep==1.170.0 semgrep scan --test --config semgrep/artifact-pointer-paths.yml semgrep/tests/artifact_pointer_paths.py
uvx --from semgrep==1.170.0 semgrep scan --metrics=off --error --config semgrep/artifact-pointer-paths.yml src/grounded_weather_forecast/artifacts.py
uv run pyrefly check src && uv run ty check src
uv run lizard -Eduplicate -C 27 -x "*/dashboard/assets/*" src
uv run pytest tests/ --cov=src --cov-report=term-missing
See the release guide for the TestPyPI and PyPI trusted publishing setup and checklist.
License
Apache-2.0
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file grounded_weather_forecast-0.4.0.tar.gz.
File metadata
- Download URL: grounded_weather_forecast-0.4.0.tar.gz
- Upload date:
- Size: 257.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
237b147316fa5274c9387e6ad7028323e9be0bc1ed62f701c5c018f2b3b2748c
|
|
| MD5 |
5db7ba9c579e6a9a06e51ca8c859ab24
|
|
| BLAKE2b-256 |
d0ec2f81704704f4e7ca24fff3ba802a64e907035679ae7e7ff6994fe70e6a81
|
Provenance
The following attestation bundles were made for grounded_weather_forecast-0.4.0.tar.gz:
Publisher:
publish.yml on hbmartin/grounded-weather-forecast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
grounded_weather_forecast-0.4.0.tar.gz -
Subject digest:
237b147316fa5274c9387e6ad7028323e9be0bc1ed62f701c5c018f2b3b2748c - Sigstore transparency entry: 2228878268
- Sigstore integration time:
-
Permalink:
hbmartin/grounded-weather-forecast@a4c807e3d5a2ce6b7148cd02831432e01349e7e0 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/hbmartin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4c807e3d5a2ce6b7148cd02831432e01349e7e0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file grounded_weather_forecast-0.4.0-py3-none-any.whl.
File metadata
- Download URL: grounded_weather_forecast-0.4.0-py3-none-any.whl
- Upload date:
- Size: 302.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b777fe32b5d9aa11dc867f4081a037bde66170ec7cef4f5fd2d7126458a14e6
|
|
| MD5 |
802271991ef6fdc6616455a1a4ff12fd
|
|
| BLAKE2b-256 |
4b7813017265421dfb922c5b80fa35c334c7867188f0930d14e913f277b0883d
|
Provenance
The following attestation bundles were made for grounded_weather_forecast-0.4.0-py3-none-any.whl:
Publisher:
publish.yml on hbmartin/grounded-weather-forecast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
grounded_weather_forecast-0.4.0-py3-none-any.whl -
Subject digest:
1b777fe32b5d9aa11dc867f4081a037bde66170ec7cef4f5fd2d7126458a14e6 - Sigstore transparency entry: 2228879103
- Sigstore integration time:
-
Permalink:
hbmartin/grounded-weather-forecast@a4c807e3d5a2ce6b7148cd02831432e01349e7e0 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/hbmartin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4c807e3d5a2ce6b7148cd02831432e01349e7e0 -
Trigger Event:
release
-
Statement type: