predict_rs/lib.rs
1//! This crate is a port of the libpredict c library [https://github.com/la1k/libpredict](https://github.com/la1k/libpredict) to Rust
2//!
3//! It provides methods to calculate passes of a satellite over an observer
4//!
5//! # Examples
6//!
7//! Examples can be found in the repository [https://github.com/eodms-sgdot/predict-rs/tree/master/examples](https://github.com/eodms-sgdot/predict-rs/tree/master/examples).
8//!
9
10/// Constants used by this crate
11pub mod consts;
12pub mod geodetic;
13/// Julian Date conversions
14pub mod julian_date;
15/// Misc math functions
16pub mod math;
17pub mod observer;
18pub mod orbit;
19pub mod predict;
20pub mod sun;