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
/*!
 * Reference frame transformations between Earth-Centered Inertial (ECI) and
 * Earth-Centered Earth-Fixed (ECEF) coordinate systems.
 *
 * This module provides transformations between various reference frames:
 * - GCRF/ITRF: Geocentric Celestial Reference Frame and International Terrestrial Reference Frame
 * - ECI/ECEF: Earth-Centered Inertial and Earth-Centered Earth-Fixed (aliases for GCRF/ITRF)
 * - EME2000: Earth Mean Equator and Equinox of J2000.0
 */

pub mod eci_ecef;
pub mod eme_2000;
pub mod gcrf_itrf;

pub use eci_ecef::*;
pub use eme_2000::*;
pub use gcrf_itrf::*;