# File AlmanacForRuby/AlmanacSolarTerm.rb, line 163
  def get_elos(year, month, day, hour, minute, second, of)

    # AlmanacDateTimeオブジェクトを、組み立てる
    sekki_date_time \
      = AlmanacDateTime.new(year, \
                            month, \
                            day, \
                            hour, \
                            minute, \
                            second, of)

    temporary_elos \
      = AlmanacAngleSunAndMoon.new.ajd_to_elos(sekki_date_time.ajd)

    return temporary_elos
  end