Class: When::CalendarTypes::EphemerisBased
- Inherits:
-
TM::Calendar
- Object
- BasicTypes::Object
- TM::Object
- TM::ReferenceSystem
- TM::Calendar
- When::CalendarTypes::EphemerisBased
- Defined in:
- lib/when_exe/calendartypes.rb
Overview
月日の配当が太陽または月の位置によって決定される暦
Calendar based on the ephemeris of the Sun or the Moon
Direct Known Subclasses
EphemerisBasedLunar, EphemerisBasedSolar, VanishingLeprechaun
Constant Summary
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::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
Instance Attribute Summary collapse
-
#formula ⇒ When::Ephmeris::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(y, m, d) ⇒ Integer
年月日 -> 通日.
-
#_length(date) ⇒ Object
暦要素数.
-
#_number_to_coordinates(sdn) ⇒ Array<Integer>
通日 - > 年月日.
-
#_sum_(date) ⇒ Integer
暦要素数.
Methods inherited from TM::Calendar
#_new_month_, _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
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, #next, #parent, #prev, #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 ⇒ When::Ephmeris::Formula (readonly)
天体暦
1220 1221 1222 |
# File 'lib/when_exe/calendartypes.rb', line 1220 def formula @formula end |
Instance Method Details
#_coordinates_to_number(y, m, d) ⇒ Integer
年月日 -> 通日
1232 1233 1234 |
# File 'lib/when_exe/calendartypes.rb', line 1232 def _coordinates_to_number(y, m, d) _new_month(@months_in_year * (+y) + m) + d end |
#_length(date) ⇒ Integer #_length(date) ⇒ Integer
暦要素数
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 |
# File 'lib/when_exe/calendartypes.rb', line 1269 def _length(date) y, m = date if m # 指定した月に含まれる日の数を返します。 m += @months_in_year * +y _new_month(m+1) - _new_month(m) else # 指定した年に含まれる月の数を返します。 @months_in_year end end |
#_number_to_coordinates(sdn) ⇒ Array<Integer>
通日 - > 年月日
1245 1246 1247 1248 1249 |
# File 'lib/when_exe/calendartypes.rb', line 1245 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
暦要素数
1289 1290 1291 1292 1293 |
# File 'lib/when_exe/calendartypes.rb', line 1289 def _sum_(date) y, = date m = @months_in_year * +y _new_month(m+@months_in_year) - _new_month(m) end |