sidereon-core 0.8.0

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
//! GNSS atmospheric correction models.

/// Ionospheric delay models and IONEX grid support.
pub mod ionosphere {
    pub use crate::ionex::{
        ionex_slant_delay, ionosphere_delay, klobuchar, klobuchar_native,
        regular_tec_grid_delay_xyz, regular_tec_xyz, GalileoNequickCoeffs, Ionex, IonoModel,
        KlobucharParams, TecGrid, TecGridEpoch, TecGridEvalOptions, TecGridShellGeometry,
    };
    pub use crate::rinex_nav::{IonoCorrections, KlobucharAlphaBeta};

    /// Role-oriented alias for a parsed IONEX vertical-TEC grid product.
    pub type IonexGrid = Ionex;
}

/// Tropospheric zenith and slant delay models.
pub mod troposphere {
    pub use crate::tropo::{
        tropo_mapping, tropo_slant, tropo_zenith, tropo_zwd_delay_xyz, zwd_zenith_wet_delay,
        AltitudeClamp, MappingFactors, MappingModel, Met, TropoModel, ZenithDelay, ZwdEpoch,
        ZwdProfile, ZwdSlantOptions,
    };
}

pub use ionosphere::{
    ionex_slant_delay, ionosphere_delay, klobuchar, klobuchar_native, regular_tec_grid_delay_xyz,
    regular_tec_xyz, GalileoNequickCoeffs, Ionex, IonexGrid, IonoModel, KlobucharParams, TecGrid,
    TecGridEpoch, TecGridEvalOptions, TecGridShellGeometry,
};
pub use troposphere::{
    tropo_mapping, tropo_slant, tropo_zenith, tropo_zwd_delay_xyz, zwd_zenith_wet_delay,
    AltitudeClamp, MappingFactors, MappingModel, Met, TropoModel, ZenithDelay, ZwdEpoch,
    ZwdProfile, ZwdSlantOptions,
};