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
//! Shared CCSDS Navigation Data Message primitives.
//!
//! This crate-internal module holds header, epoch, and covariance-block helpers
//! shared across the CCSDS NDM family. OEM and OPM readers/writers use
//! [`NdmHeader`] for message headers and [`read_covariance6`]/
//! [`write_covariance6`] for 6x6 state covariance blocks.

#![allow(dead_code, unused_imports)]

/// Shared CCSDS NDM covariance-block helpers.
pub(crate) mod covariance_block;
/// Shared CCSDS NDM epoch helpers.
pub(crate) mod epoch;
/// Shared CCSDS NDM header helpers.
pub(crate) mod header;

/// Re-export XML text helpers shared by NDM encoders.
pub(crate) use crate::astro::xml::{escape, escape_opt, first_illegal_xml_1_0_char};
/// Re-export KVN tokenization and field lookup helpers for NDM callers.
pub(crate) use crate::format::kvn::{tokenize, FieldMap};
/// Re-export the shared 6x6 covariance block reader and writer.
pub(crate) use covariance_block::{read_covariance6, write_covariance6, COVARIANCE6_KEYS};
/// Re-export the shared CCSDS NDM epoch value.
pub(crate) use epoch::NdmEpoch;
/// Re-export the shared CCSDS NDM header value.
pub(crate) use header::NdmHeader;

#[cfg(test)]
mod tests {
    use super::*;
    use crate::astro::covariance::Covariance6;
    use crate::validate::CivilSecondPolicy;

    #[test]
    fn root_reexports_header_epoch_covariance_and_text_helpers() {
        let header = NdmHeader::read(
            &FieldMap::parse("CCSDS_OMM_VERS = 2.0\nORIGINATOR = SIDEREON\n"),
            "CCSDS_OMM_VERS",
        );
        assert_eq!(header.vers, "2.0");
        assert_eq!(header.originator.as_deref(), Some("SIDEREON"));

        let epoch =
            NdmEpoch::parse("2026-06-17T04:32:52.099296Z", CivilSecondPolicy::UtcLike).unwrap();
        assert_eq!(epoch.to_iso8601(), "2026-06-17T04:32:52.099296");

        let covariance = Covariance6::from_diagonal([1.0, 2.0, 3.0, 4.0, 5.0, 6.0]).unwrap();
        let lines = write_covariance6(&covariance);
        let recovered = read_covariance6(&FieldMap::from_pairs(tokenize(&lines.join("\n"))))
            .expect("covariance round-trip");
        assert_eq!(recovered.as_matrix(), covariance.as_matrix());

        assert_eq!(escape("<&>"), "&lt;&amp;&gt;");
        assert_eq!(escape_opt(&None), "");
        assert_eq!(first_illegal_xml_1_0_char("\u{0}"), Some('\u{0}'));
    }
}