sofars/
lib.rs

1//! # Sofa
2//! This project is a basic astronomy calculation library implemented purely in Rust, based on the official [Standards of Fundamental Astronomy (SOFA)](http://iausofa.org) by the International Astronomical Union.
3//! 
4//! ## License
5//! sofa-rs follows the MIT license.
6//! 
7//! In addition to the MIT license, any use of this module must also comply with the SOFA license and terms of use, which are detailed in the license file.
8//! 
9//! In particular (but not limited to), any published work or commercial product that includes results obtained using sofa-rs should acknowledge the use of algorithms provided by the SOFA ANSIC source code to obtain these results. 
10pub mod astro;
11pub mod cal;
12pub mod consts;
13pub mod coords;
14pub mod eph;
15pub mod erst;
16pub mod fundargs;
17pub mod gnomic;
18pub mod horeq;
19pub mod pnp;
20pub mod star;
21pub mod ts;
22pub mod vm;