Open dataset, models, and benchmark for detecting orbital maneuvers from public TLE history.
Project description
maneuver-detect
Open dataset, models, and benchmark for detecting orbital maneuvers from public TLE history.
maneuver-detect takes a satellite's public TLE history and returns a DataFrame of detected maneuvers — each with a detection epoch, a calibrated confidence, a maneuver type (in-track / cross-track / radial), and a Δv estimate. It ships a curated, reconstructable, labelled dataset built from public catalog data and operator maneuver announcements; a classical reference detector with a vis-viva / Gauss-variational Δv inversion; and a frozen, leak-free benchmark protocol so a new detection method can be measured against prior work on the same splits. See the changelog for released functionality.
What this is
Detecting maneuvers from public TLEs is a long-running space-situational-awareness problem, but the open ecosystem has no shared answer to it: every paper rebuilds its own dataset, cleaning pipeline, detector, and evaluation, so results are not comparable and the data is rarely published. maneuver-detect provides the missing shared piece — an open, citable dataset and a reproducible benchmark. The load-bearing engineering is the dataset and the benchmark protocol (leak-free splits, the detection-matching rule, the metric, and the physics of the Δv inversion), not the model code, which is deliberately small and standard. The classical reference detector is the baseline every learned model must beat.
Quick start
from maneuver_detect import detect, datasets
history = datasets.tle_history(norad_id=25544, start="2024-01-01")
maneuvers = detect(history, model="classical")
# DataFrame columns: epoch, confidence, type, delta_v_estimate, plus provenance
From the command line, on a NORAD id (fetched live) or a local TLE file:
maneuver-detect detect 25544
Runnable examples live in examples/: detect_norad.py
detects maneuvers for a NORAD id, and reproduce_baseline.py
runs the classical detector through the benchmark scorer on a labelled series.
Dataset and benchmark
- Dataset — a curated, labelled set of LEO altimetry and MEO GPS satellites, built from public
TLE history and operator maneuver announcements. The raw multi-year history comes from
Space-Track, whose terms do not permit redistributing the data or analysis derived from it, so the
dataset ships as a pinned, byte-deterministic reconstruction recipe plus a content-hash
manifest: you rebuild it locally from your own Space-Track account with
maneuver-detect dataset build, and the manifest verifies the result byte-for-byte. The authored artifacts (labels, recipe, splits, manifest) are CC-BY-4.0. - Classical baseline — a rule-based reference detector (time-aware Holt smoothing, a multi-element jump rule, and the vis-viva / Gauss Δv inversion) that ships in the package. It is the baseline every learned model must beat.
- Benchmark — frozen, leak-free train / val / test splits (by satellite and time), the detection-matching rule, the per-class metric (precision/recall at a fixed false-alarm rate), and a deterministic scorer that reproduces the published numbers from a committed predictions file.
v0.1 ships the dataset recipe, the classical detector, and the local scorer. A hosted leaderboard, and Hugging Face Hub distribution of the dataset and learned-model checkpoints, are planned for a later release. The dataset and benchmark references document the source terms and the full protocol.
Installation
pip install maneuver-detect
The base install carries only permissive dependencies. It includes the PyTorch / Lightning
modelling stack and the Hugging Face Hub / datasets libraries — the learned baselines and the
Hub-distributed dataset and checkpoints build on them — so a GPU is needed only to train new
baselines, never to install the package or run the classical detector. The optional time-series
foundation-model baseline lives behind the [foundation] extra:
pip install "maneuver-detect[foundation]"
maneuver-detect supports Python 3.10, 3.11, and 3.12.
What this is not
- Not a maneuver predictor. It detects maneuvers that have already happened; forecasting future maneuvers is a different problem, deliberately out of scope.
- Not real-time or streaming. It is batch — a TLE history in, a maneuver DataFrame out.
- Not a new propagator or orbit-determination engine. It consumes SGP4 mean elements and the small inversions the Δv estimate requires; it does not do precise propagation.
- Not a general time-series-anomaly framework. The detectors are maneuver detectors on orbital element series, not a reusable anomaly library.
- Not a cross-catalog correlation or object-association tool. It works one catalogued object's history at a time; it does not correlate observations across catalogs or sensors.
- No closed or commercial data. Only publicly available TLEs and publicly released maneuver labels are used; redistribution-restricted commercial SSA products are excluded.
Documentation
Full documentation is at astro-tools.github.io/maneuver-detect — getting started, the dataset and label-source reference, the benchmark protocol, the output schema and Δv-inversion reference, the frozen design decisions, and the API reference.
Development
git clone https://github.com/astro-tools/maneuver-detect.git
cd maneuver-detect
uv sync --all-groups
See CONTRIBUTING.md for the workflow and local checks. The frozen v0.1 design
decisions live in docs/design/.
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
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 maneuver_detect-0.1.0.tar.gz.
File metadata
- Download URL: maneuver_detect-0.1.0.tar.gz
- Upload date:
- Size: 483.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6d692b8422933298b9fed7bc8ae9f438a4ade7736a4eafff120fc0c6da80010
|
|
| MD5 |
8746f47d57dd3389313f679b768174c7
|
|
| BLAKE2b-256 |
65d5967e64f7808418d8d313f8d5ba1cc56bfb57f1fa55a62e63492a51815db4
|
Provenance
The following attestation bundles were made for maneuver_detect-0.1.0.tar.gz:
Publisher:
release.yml on astro-tools/maneuver-detect
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
maneuver_detect-0.1.0.tar.gz -
Subject digest:
b6d692b8422933298b9fed7bc8ae9f438a4ade7736a4eafff120fc0c6da80010 - Sigstore transparency entry: 1796332302
- Sigstore integration time:
-
Permalink:
astro-tools/maneuver-detect@75d1b87e5cb4fa3c9786c7273d1af2601fdd62fb -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/astro-tools
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@75d1b87e5cb4fa3c9786c7273d1af2601fdd62fb -
Trigger Event:
push
-
Statement type:
File details
Details for the file maneuver_detect-0.1.0-py3-none-any.whl.
File metadata
- Download URL: maneuver_detect-0.1.0-py3-none-any.whl
- Upload date:
- Size: 104.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
691a2573df5b7be682b524f9ccb1c1603dd2ee443943f9878016f05afb21e212
|
|
| MD5 |
03a6a5430296f5283f467762330384d7
|
|
| BLAKE2b-256 |
21d2c1322c2570cc460acddd7d4d42880c739cdde3af8d49c748ac3e2a716d81
|
Provenance
The following attestation bundles were made for maneuver_detect-0.1.0-py3-none-any.whl:
Publisher:
release.yml on astro-tools/maneuver-detect
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
maneuver_detect-0.1.0-py3-none-any.whl -
Subject digest:
691a2573df5b7be682b524f9ccb1c1603dd2ee443943f9878016f05afb21e212 - Sigstore transparency entry: 1796332858
- Sigstore integration time:
-
Permalink:
astro-tools/maneuver-detect@75d1b87e5cb4fa3c9786c7273d1af2601fdd62fb -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/astro-tools
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@75d1b87e5cb4fa3c9786c7273d1af2601fdd62fb -
Trigger Event:
push
-
Statement type: