Class: When::CalendarTypes::EphemerisBasedLuniSolar
- Inherits:
-
EphemerisBasedSolar
- Object
- BasicTypes::Object
- TM::Object
- TM::ReferenceSystem
- TM::Calendar
- EphemerisBased
- EphemerisBasedSolar
- When::CalendarTypes::EphemerisBasedLuniSolar
- Includes:
- Lunar
- Defined in:
- lib/when_exe/calendartypes.rb
Overview
月日の配当が太陽および月の位置によって決定される太陰太陽暦
Calendar based on the ephemeris of the Sun and the Moon
Direct Known Subclasses
Constant Summary
Constants included from Lunar
Constants inherited from TM::Calendar
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 Parts::Resource
Parts::Resource::ConstList, Parts::Resource::ConstTypes, Parts::Resource::IRIDecode, Parts::Resource::IRIDecodeTable, Parts::Resource::IRIEncode, Parts::Resource::IRIEncodeTable, Parts::Resource::IRIHeader, Parts::Resource::LabelProperty
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
-
#formula ⇒ Array<When::Ephemeris::Formula>
readonly
計算方法.
Attributes inherited from TM::Calendar
#diff_to_CE, #epoch_in_CE, #reference_frame, #time_basis
Attributes included from TimeStandard::TimeBasis
Attributes inherited from TM::ReferenceSystem
#domain_of_validity, #position
Attributes inherited from BasicTypes::Object
Attributes included from Parts::Resource
#_pool, #child, #keys, #locale, #namespace
Instance Method Summary collapse
-
#_coordinates_to_number(yy, mm, dd) ⇒ Integer
年月日 -> 通日.
-
#_length(date) ⇒ Object
暦要素数.
-
#_number_to_coordinates(sdn) ⇒ Array<Integer>
通日 - > 年月日.
Methods included from Lunar
#_verify, #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 TimeStandard::TimeBasis
Methods included from When::Coordinates
to_deg, to_deg_225, to_dms, utf_gets
Methods inherited from TM::ReferenceSystem
Methods included from Parts::Resource
#[], #^, _abbreviation_to_iri, _decode, _encode, _extract_prefix, _instance, _instantiate, _parse, _path_with_prefix, _replace_tags, _setup_, _setup_info, _simplify_path, base_uri, #each, #enum_for, #hierarchy, #include?, #included?, #iri, #leaf?, #m17n, #map, #parent, #registered?, root_dir
Methods included from Parts::Resource::Pool
#[], #[]=, #_pool, #_setup_, #pool_keys
Methods included from Parts::Resource::Synchronize
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class When::Parts::Resource
Instance Attribute Details
#formula ⇒ Array<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
年月日 -> 通日
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
暦要素数
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 |