sunrise-lite

MIT License

This crate provides a function for calculating sunrise and sunset times using this method.

Forked from https://github.com/nathan-osman/rust-sunrise.

Usage

In order to perform the calculation, you'll need to provide the following:

Begin by adding this crate to Cargo.toml:

toml [dependencies] sunrise-lite = "1.0.0"

Next, add a declaration for the crate:

rust use sunrise_lite;

You can use the sunrise_sunset function to perform the calculation:

rust // Calculate times for January 1, 2016 in Toronto let (sunrise, sunset) = sunrise_lite::sunrise_sunset( 43.6532, -79.3832, 2016, 1, 1, );