Class: When::CalendarTypes::EphemerisBased

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

Overview

月日の配当が太陽または月の位置によって決定される暦

Calendar based on the ephemeris of the Sun or the Moon

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 collapse

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 Attribute Details

#formulaWhen::Ephmeris::Formula (readonly)

天体暦

Returns:

  • (When::Ephmeris::Formula)


647
648
649
# File 'lib/when_exe/calendartypes.rb', line 647

def formula
  @formula
end

Instance Method Details

#_coordinates_to_number(y, m, d) ⇒ Integer

年月日 -> 通日

Parameters:

  • y (Numeric)

  • m (Integer)

    月 (0 始まり)

  • d (Integer)

    日 (0 始まり)

Returns:

  • (Integer)

    通日



659
660
661
# File 'lib/when_exe/calendartypes.rb', line 659

def _coordinates_to_number(y, m, d)
  _new_month(@months_in_year * (+y) + m) + d
end

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

暦要素数

Overloads:

  • #_length(date) ⇒ Integer

    Returns その年の月数.

    Parameters:

    • date (Array<Integer>)

      ( y )

      y 年

    Returns:

    • (Integer)

      その年の月数

  • #_length(date) ⇒ Integer

    Returns その年月の日数.

    Parameters:

    • date (Array<Integer>)

      ( y, m )

      y 年

      m 月 (0 始まり)

    Returns:

    • (Integer)

      その年月の日数



696
697
698
699
700
701
702
703
704
705
706
# File 'lib/when_exe/calendartypes.rb', line 696

def _length(date)
  y, m = date
  if (m)
    #  指定した月に含まれる日の数を返します。
    m += @months_in_year * +y
    return _new_month(m+1) - _new_month(m)
  else
    #  指定した年に含まれる月の数を返します。
    return @months_in_year
  end
end

#_number_to_coordinates(sdn) ⇒ Array<Integer>

通日 - > 年月日

Parameters:

  • sdn (Integer)

    通日

Returns:

  • (Array<Integer>)
    y, m, d

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



672
673
674
675
676
# File 'lib/when_exe/calendartypes.rb', line 672

def _number_to_coordinates(sdn)
  m, d = Residue.mod(sdn) {|m| _new_month(m)}
  y, m = m.divmod(@months_in_year)
  return y, m, d
end

#_sum_(date) ⇒ Integer

暦要素数

Parameters:

Returns:

  • (Integer)

    その年の日数



716
717
718
719
720
# File 'lib/when_exe/calendartypes.rb', line 716

def _sum_(date)
  y, = date
  m = @months_in_year * +y
  return _new_month(m+@months_in_year) - _new_month(m)
end