Class: When::CalendarTypes::EphemerisBasedLuniSolar

Inherits:
EphemerisBasedSolar show all
Includes:
Lunar
Defined in:
lib/when_exe/calendartypes.rb

Overview

月日の配当が太陽および月の位置によって決定される太陰太陽暦

Calendar based on the ephemeris of the Sun and the Moon

Direct Known Subclasses

ChineseLuniSolar, HinduLuniSolar, Tibetan

Constant Summary

Constants included from When::Coordinates

When::Coordinates::Bahai, When::Coordinates::Chinese, When::Coordinates::Common, When::Coordinates::DefaultDateIndices, When::Coordinates::DefaultDayIndex, When::Coordinates::DefaultTimeIndices, When::Coordinates::Indian, When::Coordinates::Iranian, When::Coordinates::Javanese, When::Coordinates::LocationTable, When::Coordinates::MATCH, When::Coordinates::Mayan, When::Coordinates::PERIOD, When::Coordinates::PERIOD_NAME, When::Coordinates::PRECISION, When::Coordinates::PRECISION_NAME, When::Coordinates::Russian, When::Coordinates::Tibetan, When::Coordinates::VALUE, When::Coordinates::Yi

Constants included from Namespace

Namespace::DC, Namespace::DCQ, Namespace::DCT, Namespace::FOAF, Namespace::OWL, Namespace::RDF, Namespace::RDFC, Namespace::RDFS, Namespace::RSS, Namespace::XSD

Instance Attribute Summary collapse

Attributes inherited from TM::Calendar

#epoch_in_CE, #reference_frame, #time_basis

Attributes inherited from TM::ReferenceSystem

#domain_of_validity, #position

Attributes inherited from BasicTypes::Object

#label

Attributes included from Parts::Resource

#child, #keys, #locale, #namespace

Instance Method Summary collapse

Methods included from Lunar

#lunar_table, #verify

Methods inherited from TM::Calendar

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

Methods included from When::Coordinates

to_deg, to_deg_225, to_dms

Methods inherited from TM::ReferenceSystem

#domain, #name

Methods included from Parts::Resource

#[], #^, _instance, _setup_, _setup_info, base_uri, #each, #enum_for, #hierarchy, #include?, #included?, #iri, #leaf?, #m17n, #map, #parent, #registered?, root_dir

Methods included from Parts::Resource::Pool

#[], #[]=, #_setup_

Dynamic Method Handling

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

Instance Attribute Details

#formulaArray<When::Ephemeris::Formula> (readonly)

計算方法



1340
1341
1342
# File 'lib/when_exe/calendartypes.rb', line 1340

def formula
  @formula
end

Instance Method Details

#_coordinates_to_number(yy, mm, dd) ⇒ Integer

年月日 -> 通日

Parameters:

  • yy (Numeric)

  • mm (Integer)

    月 (0 始まり)

  • dd (Integer)

    日 (0 始まり)

Returns:

  • (Integer)

    通日



1352
1353
1354
# File 'lib/when_exe/calendartypes.rb', line 1352

def _coordinates_to_number(yy, mm, dd)
  _new_month(_new_year_month(+yy) + mm) + dd
end

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

暦要素数

Overloads:

  • #_length(date) ⇒ Integer

    Returns その年の月数.

    Parameters:

    • date (Array<Integer>)

      ( 年 )

    Returns:

    • (Integer)

      その年の月数

  • #_length(date) ⇒ Integer
    Note:

    月は 0 始まり

    Returns その年月の日数.

    Parameters:

    • date (Array<Integer>)

      ( 年, 月 )

    Returns:

    • (Integer)

      その年月の日数



1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
# File 'lib/when_exe/calendartypes.rb', line 1382

def _length(date)
  y, m = date
  if m
    #  指定した月に含まれる日の数を返します。
    m += _new_year_month(+y)
    _new_month(+m+1) - _new_month(+m)
  else
    #  指定した年に含まれる月の数を返します。
    _ids([y]).length
  end
end

#_number_to_coordinates(sdn) ⇒ Array<Integer>

通日 - > 年月日

Parameters:

  • sdn (Integer)

    通日

Returns:

  • (Array<Integer>)

    ( y, m, d )

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


1365
1366
1367
1368
1369
# File 'lib/when_exe/calendartypes.rb', line 1365

def _number_to_coordinates(sdn)
  nn, dd = Residue.mod(sdn) {|m| _new_month(m)}
  yy, mm = Residue.mod(nn)  {|y| _new_year_month(y)}
  [yy, mm, dd]
end