Class: When::CalendarTypes::ChineseSolar

Inherits:
EphemerisBasedSolar show all
Defined in:
lib/when_exe/region/chinese.rb

Overview

Chinese Solar Calendar

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 EphemerisBased

#formula

Attributes inherited from TM::Calendar

#reference_frame, #time_basis

Attributes included from TimeStandard::TimeBasis

#_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

Class Method Summary collapse

Methods inherited from EphemerisBasedSolar

#_new_month_

Methods inherited from EphemerisBased

#_coordinates_to_number, #_length, #_number_to_coordinates, #_sum_

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_deg_225, to_dms

Methods inherited from TM::ReferenceSystem

#domain, #name

Methods included from Parts::Resource

#[], #^, _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

#synchronize

Dynamic Method Handling

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

Instance Attribute Details

#doyoObject (readonly)



728
729
730
# File 'lib/when_exe/region/chinese.rb', line 728

def doyo
  @doyo
end

#twinWhen::CalendarTypes::ChineseLuniSolar (readonly)

Returns 対で用いる太陰太陽暦の名前.

Returns:



725
726
727
# File 'lib/when_exe/region/chinese.rb', line 725

def twin
  @twin
end

Class Method Details

.change_unit(unit, definition) ⇒ Object

盈縮差の表の時間の単位を調整する



709
710
711
712
713
714
715
716
717
718
719
# File 'lib/when_exe/region/chinese.rb', line 709

def change_unit(unit, definition)
  definition.map {|line|
    line.map {|item|
      case item
      when Range   ; Range.new(item.first*unit, item.last*unit, item.exclude_end?)
      when Numeric ; item*unit
      else         ; item
      end
    }
  }
end

.twin(area, definition) ⇒ Object

太陰太陽暦の定義から太陰太陽暦と太陽暦(節月)の組を作る



691
692
693
694
695
696
697
698
699
700
701
702
703
# File 'lib/when_exe/region/chinese.rb', line 691

def twin(area, definition)
  definition.inject([]) {|list, cal|
    if cal.kind_of?(Array) && cal[0] == ChineseLuniSolar
      solar_name  = cal[1].sub(/=?\]/, '(節月)=]')
      lunisolar   = cal.dup << "twin:#{area}::" + solar_name.gsub(/(name:\[|=?\])/,'')
      solar       = cal.dup << "twin:#{area}::" + cal[1].gsub(/(name:\[|=?\])/,'')
      solar[0..1] = [ChineseSolar, solar_name]
      list << lunisolar << solar
    else
      list << cal
    end
  }
end