1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![warn(missing_docs)]

//! Implementation of a selection of Jean Meeus' astronomy algorithms.
//! 
//! Sources:
//! * [NREL Solar Position Algorithm](https://midcdmz.nrel.gov/solpos/spa.html)
//! * "Astronomical Algorithms, Second Edition" by Jean Meeus

extern crate chrono;

pub mod time;