Class: When::CalendarTypes::Swedish
- Inherits:
-
Julian
- Object
- BasicTypes::Object
- TM::Object
- TM::ReferenceSystem
- TM::Calendar
- Christian
- Julian
- When::CalendarTypes::Swedish
- Defined in:
- lib/when_exe/region/christian.rb
Overview
Swedish Calendar
Constant Summary collapse
- DefaultReformDate =
デフォルトの改暦日付(ユリウス通日)
2361390
- SwedishCalendarRange =
2342042...2346425
- ExtraDate =
[1712,1,29]
- Length =
{ [1700, nil] => 365, [1700, 1] => 28, [1712, nil] => 367, [1712, 1] => 30 }
- EasterDelay =
{ 1741 => -7, 1742 => -35, 1744 => -7, 1745 => -7, 1747 => -28, 1748 => -7, 1750 => -28, 1751 => -7, 1752 => -7, 1802 => +7, 1805 => +7, 1818 => +7 }
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
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) ⇒ Object
年月日 -> 通日.
-
#_easter_delay(year) ⇒ Object
復活祭の遅延日数.
-
#_length(date) ⇒ Object
暦要素数.
-
#_number_to_coordinates(jdn) ⇒ Object
通日 - > 年月日.
Methods inherited from Julian
#_default_start, #_lunar_equation
Methods inherited from Christian
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
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 Method Details
#_coordinates_to_number(y, m, d) ⇒ Object
年月日 -> 通日
196 197 198 199 200 |
# File 'lib/when_exe/region/christian.rb', line 196 def _coordinates_to_number(y,m,d) jdn = super return SwedishCalendarRange.last if [+y, m, d] == ExtraDate SwedishCalendarRange.include?(jdn-1) ? jdn-1 : jdn end |
#_easter_delay(year) ⇒ Object
復活祭の遅延日数
223 224 225 |
# File 'lib/when_exe/region/christian.rb', line 223 def _easter_delay(year) EasterDelay[year] || 0 end |
#_length(date) ⇒ Object
暦要素数
215 216 217 218 |
# File 'lib/when_exe/region/christian.rb', line 215 def _length(date) y, m = date Length[[+y,m]] || super end |
#_number_to_coordinates(jdn) ⇒ Object
通日 - > 年月日
206 207 208 209 |
# File 'lib/when_exe/region/christian.rb', line 206 def _number_to_coordinates(jdn) return ExtraDate.dup if jdn == SwedishCalendarRange.last super(SwedishCalendarRange.include?(jdn) ? jdn+1 : jdn) end |