Hi All,
I have just updated the DateTime::Event::Sunrise package on
CVS. I have added a new method sunrise_sunset (and a new method).
Basically, it will return a DateTime Span containing
the rise/set times. Example:
use DateTime;
use DateTime::Event::Sunrise;
use strict;
use warnings;
my $dt = DateTime->new( year => 2000,
month => 6,
day => 20,
time_zone => 'America/Los_Angeles',
);
my $sunrise = DateTime::Event::Sunrise ->new(
longitude =>'-118' ,
latitude => '33',
);
my $tmp = $sunrise->sunrise_sunset($dt);
print "Sunrise is:" , $tmp->start->datetime , "\n";
print "Sunset is:" , $tmp->end->datetime;
If I don't hear any complains I will release to CPAN
next week as version 0.05.
Thanks
Ron Hill