brahe 1.4.0

Brahe is a modern satellite dynamics library for research and engineering applications designed to be easy-to-learn, high-performance, and quick-to-deploy. The north-star of the development is enabling users to solve meaningful problems and answer questions quickly, easily, and correctly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*!
 * CCSDS XML format support.
 *
 * Stub — implemented in Stage 2 (OEM), Stage 5 (OMM), Stage 6 (OPM).
 */

mod parser;
mod writer;

pub use parser::parse_cdm_xml;
pub use parser::parse_oem_xml;
pub use parser::parse_omm_xml;
pub use parser::parse_opm_xml;
pub use writer::write_cdm_xml;
pub use writer::write_oem_xml;
pub use writer::write_omm_xml;
pub use writer::write_opm_xml;