Class: When::CalendarTypes::Julian

Inherits:
TM::Calendar show all
Defined in:
lib/when_exe/region/christian.rb

Overview

Julian Calendar

Direct Known Subclasses

Gregorian

Constant Summary

Constants included from When::Coordinates

When::Coordinates::Bahai, When::Coordinates::CommonResidue, When::Coordinates::DefaultDateIndices, When::Coordinates::DefaultDayIndex, When::Coordinates::DefaultTimeIndices, When::Coordinates::IndianCities, When::Coordinates::Javanese, When::Coordinates::MATCH, When::Coordinates::Mayan, When::Coordinates::PERIOD, When::Coordinates::PERIOD_NAME, When::Coordinates::PRECISION, When::Coordinates::PRECISION_NAME, When::Coordinates::Tibetan, When::Coordinates::VALUE, When::Coordinates::Yi

Constants included from Parts::Resource

Parts::Resource::LabelProperty

Instance Attribute Summary

Attributes inherited from TM::Calendar

#reference_frame, #time_basis

Attributes inherited from TM::ReferenceSystem

#domain_of_validity, #position

Attributes inherited from BasicTypes::Object

#label

Attributes included from Parts::Resource

#_pool, #child, #keys, #locale, #namespace

Instance Method Summary collapse

Methods inherited from TM::Calendar

#_new_month_, _setup_, #_to_month_number_, #date_trans, #jul_trans, #rate_of_clock, #time_standard, #to_cal_date, #to_julian_date, #to_universal_time

Methods included from TimeStandard::TimeBasis

#_normalize_time_basis

Methods included from When::Coordinates

to_deg, to_dms

Methods inherited from TM::ReferenceSystem

#domain, #name

Methods included from Parts::Resource

#[], #^, _decode, _encode, _extract_prefix, _instance, _parse, _path_with_prefix, _replace_tags, _setup_, #each, #enum_for, #hierarchy, #include?, #included?, #iri, #leaf?, #m17n, #map, #next, #parent, #prev, #registered?

Methods included from Parts::Resource::Pool

#[], #[]=, #_pool, #_setup_, #pool_keys

Methods included from Parts::Resource::Synchronize

#synchronize

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class When::Parts::Resource

Instance Method Details

#_coordinates_to_number(y, m, d) ⇒ Integer

年月日 -> 通日

Parameters:

  • y (Numeric)

  • m (Integer)

    月 (0 始まり)

  • d (Integer)

    日 (0 始まり)

Returns:

  • (Integer)

    通日



124
125
126
127
128
129
130
# File 'lib/when_exe/region/christian.rb', line 124

def _coordinates_to_number(y,m,d)
  m = (+m + 10) % 12
  y =  +y + 4716 - m / 10
  a = (1461*y.to_i    ).div(4)
  b = ( 153*m.to_i + 2).div(5)
  return a + b + (+d) - 1401
end

#_length(date) ⇒ Integer #_length(date) ⇒ Integer

暦要素数

Overloads:

  • #_length(date) ⇒ Integer

    Returns 12 (=その年の月数).

    Parameters:

    • date (Array<Integer>)

      ( 年 )

    Returns:

    • (Integer)

      12 (=その年の月数)

  • #_length(date) ⇒ Integer
    Note:

    月は 0 始まりの通番

    Returns その年月の日数.

    Parameters:

    • date (Array<Integer>)

      ( 年, 月 )

    Returns:

    • (Integer)

      その年月の日数



163
164
165
166
167
168
# File 'lib/when_exe/region/christian.rb', line 163

def _length(date)
  yy, mm = date
  return super unless(mm)
  return ((yy % 4) == 0) ? 29 : 28 if (mm == 1)
  return (((((mm + 10) % 12) % 5) % 2) == 0) ? 31 : 30
end

#_lunar_equation(year) ⇒ Integer

太陰方程式

Parameters:

  • year (Numeric)

    西暦の年数

Returns:

  • (Integer)

    0 (ユリウス暦では補正なし)



175
176
177
# File 'lib/when_exe/region/christian.rb', line 175

def _lunar_equation(year)
  0
end

#_number_to_coordinates(jdn) ⇒ Array<Integer>

通日 - > 年月日

Parameters:

  • jdn (Integer)

    通日

Returns:

  • (Array<Integer>)

    ( y, m, d )

    y 年
    m 月 (0 始まり)
    d 日 (0 始まり)


141
142
143
144
145
146
147
148
149
150
# File 'lib/when_exe/region/christian.rb', line 141

def _number_to_coordinates(jdn)
  j    =   jdn.to_i + 1401
  y, t =  (4*j + 3).divmod(1461)
  t    =   t.div(4)
  m, d =  (5*t + 2).divmod(153)
  d    =   d.div(5)
  m    =  (m+2) % 12
  y    =  y - 4716 + (13-m) / 12
  return [y,m,d]
end