Clean reboot of SeeVar: AAVSO-first, proof-driven, and built around standard astronomy libraries.
- Preflight: load catalogs, cadence, weather, dark window, horizon, and scope inventory.
- Flight: submit/monitor a plan through
seestarpyorseestar_alp. - Postflight: reject bad frames, stack, plate-solve, run photometry, stage AAVSO report.
- Proof: every step writes JSON evidence and a clear pass/fail reason.
Workflow codes:
P1-P8preflightA1-A12flight per targetF1-F8postflight
No target is successful unless the whole chain passes:
plan -> execute -> download -> QC -> stack -> solve -> photometry -> report
python -m venv .venv
. .venv/bin/activate
pip install -e ".[seestar,dev]"
pytestseevar-next-postflight /path/to/object_frames /path/to/catalog.json --output-dir data/postflightThe catalog is intentionally small at this stage:
{
"target": "ST Boo",
"ra_deg": 210.0,
"dec_deg": 40.0,
"filter_name": "TG",
"observer_code": "YOUR_AAVSO_CODE",
"comparison_stars": [
{"id": "C1", "ra_deg": 210.01, "dec_deg": 40.0, "mag": 12.1}
]
}TST, TEST, and UNKNOWN are blocked before AAVSO report staging.
Start with ROADMAP.md. It is the control document for this repo.
seevar-nextOr run directly:
seevar-next-preflight --catalog campaign_targets --lat 52.39 --lon 4.61 --output data/tonights_plan.json
seevar-next-seestarpy-plan --input data/tonights_plan.json --output data/seestarpy_plan.json
seevar-next-readiness --config config/seevar-next.jsonseevar-next-readiness writes data/readiness.txt for humans and blocks unattended submit when weather or telescope connection checks fail.
Human flight status and dashboard:
seevar-next-flight steps --plan data/tonights_plan.json --proof data/flight_runs/flight_steps.jsonl --human
seevar-next-flight status --human
seevar-next dashboardUse the configured dashboard URL from config/seevar-next.json. The default is http://127.0.0.1:8765/.
seestarpyis the primary Python adapter:pip install -e ".[seestar,dev]"seestar_alpis a fallback control path, but not packaged as a Python dependency in this repo yet- if you want fallback support, install and run the
seestar_alpdaemon separately
See docs/MANUAL.md, docs/PREFLIGHT.md, docs/FLIGHT.md, docs/POSTFLIGHT.md, docs/LOGIC_SALVAGE.md, docs/SYSTEMD.md, docs/SALVAGE.md, and CHANGELOG.md.