1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*!
* CCSDS Orbit Data Message (ODM) support.
*
* This module provides parsing and writing of CCSDS standard orbit data
* messages in three encoding formats: KVN (text), XML, and JSON.
*
* Supported message types:
* - **OEM** (Orbit Ephemeris Message): Time-series of state vectors
* - **OMM** (Orbit Mean-elements Message): Mean elements for SGP4 propagation
* - **OPM** (Orbit Parameter Message): Single state vector with optional extras
*
* Reference: CCSDS 502.0-B-3 (Orbit Data Messages), April 2023
*
* # Usage
*
* ```no_run
* use brahe::ccsds::oem::OEM;
*
* let oem = OEM::from_file("ephemeris.oem").unwrap();
* for segment in &oem.segments {
* println!("Object: {}", segment.metadata.object_name);
* println!("States: {}", segment.states.len());
* }
* ```
*/
// Re-export commonly used types at the ccsds module level
pub use ;
pub use ;
pub use ;
pub use OMM;
pub use OPM;