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
/*!
 * The orbits module contains the core types and functions for working with orbital element
 * representations and Two-Line Element (TLE) handling.
 */

pub mod keplerian;
/// Mean-Osculating Keplerian element conversions using Brouwer-Lyddane theory.
pub mod mean_elements;
/// Two-Line Element (TLE) format parsing and handling.
pub mod tle;
/// Walker Delta constellation generator.
pub mod walker;

pub use keplerian::*;
pub use mean_elements::*;
pub use tle::*;
pub use walker::*;