sidereon-core 0.16.1

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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Convenient imports for common GNSS workflows.

pub use crate::ephemeris::{
    sp3_ecef_state_to_eci, OrientedPreciseEphemerisStateSample, PreciseEphemerisStateSample,
};
pub use crate::ephemeris::{BroadcastEphemeris, EphemerisSource, Sp3, SP3};
pub use crate::frame::{ItrfPositionM, ItrfVelocityMS, Wgs84Geodetic};
pub use crate::fusion::{
    FusionUpdate, GnssFixMeasurement, InertialFilter, InertialFilterConfig, LooseCouplingConfig,
    TimeSyncHistoryConfig, TimeSyncHistoryStatus, TimeSyncUpdate,
};
pub use crate::id::{GnssSatelliteId, GnssSystem};
pub use crate::positioning::{solve, Corrections, Observation, Solution, SolveInputs};
pub use crate::sidereal::{
    orbit_repeat_lag, repeat_period, sidereal_filter, SiderealFilterOptions, SiderealFilterOutput,
    SiderealTemplateMethod,
};
pub use crate::{EarthOrientation, EarthOrientationProvider, TdbEarthOrientationProvider};