No description
The Rust hrrr_points worker now persists surface_refractivity / min_refractivity_gradient / ducting_detected at upsert time (previous commit), but the ~80k rows written before that fix have the scalar columns NULL even though the pressure-level `profile` JSONB is populated. Re-fetching them would re-pull tens of GB of HRRR grids we already parsed. Weather.backfill_hrrr_scalars/1 streams rows with `surface_refractivity IS NULL`, runs the existing SoundingParams.derive/1 against the stored profile, and writes the scalars back — no network, no GRIB decode. Batched (500 rows per tick, 1000 tick cap) to keep transactions short on the Turing Pi 2 PG node. Meant to be run once via `bin/microwaveprop rpc` after deploy. Idempotent; the WHERE clause excludes already-backfilled rows. |
||
|---|---|---|
| .forgejo/workflows | ||
| .github | ||
| assets | ||
| bin | ||
| config | ||
| docs | ||
| k8s | ||
| lib | ||
| lib_ml | ||
| notebooks | ||
| priv | ||
| rel | ||
| rust/prop_grid_rs | ||
| scripts | ||
| test | ||
| vendor | ||
| .credo.exs | ||
| .dockerignore | ||
| .formatter.exs | ||
| .gitignore | ||
| .tool-versions | ||
| AGENTS.md | ||
| algo.md | ||
| app.json | ||
| CLAUDE.md | ||
| Dockerfile | ||
| elevation.md | ||
| LICENSE | ||
| mix.exs | ||
| mix.lock | ||
| prediction.md | ||
| README.md | ||
| tail_logs.sh | ||
| updates.md | ||
Microwaveprop
To start your Phoenix server:
- Run
mix setupto install and setup dependencies - Start Phoenix endpoint with
mix phx.serveror inside IEx withiex -S mix phx.server
Now you can visit localhost:4000 from your browser.
Ready to run in production? Please check our deployment guides.
Learn more
- Official website: https://www.phoenixframework.org/
- Guides: https://hexdocs.pm/phoenix/overview.html
- Docs: https://hexdocs.pm/phoenix
- Forum: https://elixirforum.com/c/phoenix-forum
- Source: https://github.com/phoenixframework/phoenix