my $rata_die = DateTime->new(year => 1, month => 1, day => 1); my $from_rd = $rata_die + DateTime::Duration->new(days => $rd_days);
--d
I was trying to fool around with some calculations from "Calendrical Calculations" -- one of the tables in there shows values corresponding to Rata Die dates, and I was trying to see if DateTime supported creating DateTime objects from Rata Die values... I didn't see one, so I guess it doesn't.
Is this something that can be implemented? Is there a workaround?
--d
