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
/*!
 * Module to provide coordinate system transformations.
 */

pub mod cartesian;
pub mod coordinate_types;
pub mod geocentric;
pub mod geodetic;
pub mod polygon;
pub mod topocentric;

pub use cartesian::*;
pub use coordinate_types::*;
pub use geocentric::*;
pub use geodetic::*;
pub use polygon::*;
pub use topocentric::*;