Class: Date

Inherits:
Object
  • Object
show all
Defined in:
lib/when_sun.rb

Instance Method Summary collapse

Instance Method Details

#jd_to_ajd(jd, fr, of = 0) ⇒ Object



128
129
130
# File 'lib/when_sun.rb', line 128

def jd_to_ajd(jd, fr, of=0)
  jd + fr - of - HALF_DAYS_IN_DAY
end

#to_datetimeObject



124
125
126
# File 'lib/when_sun.rb', line 124

def to_datetime()
  DateTime.new!(jd_to_ajd(jd, 0, 0), @of, @sg)
end