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//! Refer to the [documentation](https://docs.rs/sofars/0.1.0) for detail.
5//! 
6//! ## License
7//! sofa-rs follows the MIT license.
8//! 
9//! 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.
10//! 
11//! 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.
12pub mod astro;
13pub mod cal;
14pub mod consts;
15pub mod coords;
16pub mod eph;
17pub mod erst;
18pub mod fundargs;
19pub mod gnomic;
20pub mod horeq;
21pub mod pnp;
22pub mod star;
23pub mod ts;
24pub mod vm;