Calculates sunrise and sunset times
The algorithm comes from the Almanac for computers.
In a Gemfile/Gemspec:
gem 'ruby-sun-times', require: 'sun_times'
Directly:
require 'sun_times'
The two methods rise
and set
each return a Time.
day = Date.new(2010, 3, 8)
latitude = 43.779
longitude = 11.432
sun_times = SunTimes.new
sun_times.rise(day, latitude, longitude) # => 2010-03-08 05:39:53 UTC
sun_times.set(day, latitude, longitude) # => 2010-03-08 17:11:16 UTC