outfit 4.1.0

Orbit determination toolkit in Rust. Provides astrometric parsing, observer management, and initial orbit determination (Gauss method) with JPL ephemeris support.
Documentation
1
2
3
4
5
6
7
8
9
//! Preliminary (initial-guess) solvers for the universal anomaly `psi`.
//!
//! These modules do not iterate to full convergence: they only provide a
//! starting value for `psi`, meant to be refined afterwards by
//! [`solve_kepuni`](crate::kepler::solve_kepuni).

pub mod prelim_elliptic;
pub mod prelim_hyperbolic;
pub mod prelim_parabolic;