sidereon-core 0.9.2

The complete Sidereon engine: numerical astrodynamics propagation core plus the GNSS domain layer (SP3, broadcast ephemeris, multi-GNSS positioning, RTK/PPP, ionosphere/troposphere, DOP) behind a default-on gnss feature
Documentation
use thiserror::Error;

#[derive(Error, Debug, Clone)]
pub enum PropagationError {
    #[error("Invalid input: {0}")]
    InvalidInput(String),

    #[error("Numerical failure: {0}")]
    NumericalFailure(String),

    #[error("Maximum number of steps exceeded")]
    MaxStepsExceeded,

    #[error("Event failure: {0}")]
    EventFailure(String),

    #[error("Force model failure: {0}")]
    ForceModelFailure(String),
}