Initial release: Ashvale Station 1.0.0

This commit is contained in:
2026-08-15 20:43:51 +01:00
commit 06ce53bc44
36 changed files with 7116 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
---
name: Bug report
about: Something crashed or behaved wrongly
labels: bug
---
**What happened**
**What you expected instead**
**Hardware**
- Board: (e.g. Pi Zero 2 W)
- Sense HAT: (v1 / v2 / none, running the simulator)
- OS and Python version:
**Output of `GET /api/status`**
```json
```
**Relevant log lines** (`journalctl -u ashvale -n 50`)
```
```
@@ -0,0 +1,22 @@
---
name: Forecast quality
about: The models are producing poor or strange forecasts
labels: forecasting
---
**What looks wrong**
**Output of `python scripts/evaluate.py`**
```
```
**Scorecard from the Models tab** (or `GET /api/scorecard`)
```json
```
**How long has the station been logging?** (`history_days` from `/api/status`)
**Is it indoors?** And is `site.altitude_m` set correctly in your config?
These two account for most reported forecast oddities.
+64
View File
@@ -0,0 +1,64 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install httpx
- name: Byte-compile every module
run: python -m compileall -q ashvale scripts run.py
- name: Import check
run: python -c "import ashvale.api; print('imports ok')"
- name: Seed synthetic history
run: python scripts/simulate.py --days 10 --wipe
# The backtest is the real test: it exercises features, the RLS heads,
# climatology and conformal calibration end to end, and fails loudly if
# any of them stop producing finite numbers.
- name: Walk-forward backtest
run: python scripts/evaluate.py --train-frac 0.6 --hours 300
- name: Exercise the API surface
run: |
python - <<'PY'
from fastapi.testclient import TestClient
import ashvale.api as api
with TestClient(api.app) as c:
for ep in ["/api/telemetry", "/api/status", "/api/forecast",
"/api/outlook", "/api/precipitation", "/api/anomaly",
"/api/models", "/api/scorecard", "/api/records",
"/api/storage", "/api/methods",
"/api/history/range?hours=24",
"/api/history/daily?days=5", "/"]:
r = c.get(ep)
assert r.status_code == 200, (ep, r.status_code, r.text[:200])
assert c.post("/api/train").json()["trained"] is True
assert len(c.get("/api/export.csv?hours=6").text.splitlines()) > 1
print("api surface ok")
PY