//! Compact orbit approximations.
//!
//! Reduced orbits are fitted approximations for caching, transport, and quick
//! visibility math. They are not precise ephemeris products; use
//! [`crate::ephemeris::Sp3`] or [`crate::ephemeris::BroadcastEphemeris`] when
//! full-fidelity products are available.
pub use crate;
/// Role-oriented alias for a fitted reduced-orbit model.
pub type ReducedOrbitModel = ReducedOrbit;
/// Error type returned by reduced-orbit fitting/evaluation.
pub type Error = ReducedOrbitError;