Class: When::TimeStandard::LocalMeanTime
- Inherits:
-
TimeStandard
- Object
- BasicTypes::Object
- TimeStandard
- When::TimeStandard::LocalMeanTime
- Includes:
- LocalTime
- Defined in:
- lib/when_exe/timestandard.rb
Overview
地方平均太陽時
Constant Summary
Constants inherited from TimeStandard
Constants included from When::TimeStandard
DeltaT, DeltaT0, DeltaThreshold, TAI_UTC, YearThreshold
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 BasicTypes::Object
Attributes included from Parts::Resource
#_pool, #child, #keys, #locale, #namespace
Instance Method Summary collapse
-
#from_dynamical_time(time) ⇒ Numeric
dynamical time を local mean time に変換する.
-
#to_dynamical_time(time) ⇒ Numeric
local mean time を dynamical time に変換する.
Methods included from LocalTime
#localdate_difference, #localtime_difference
Methods inherited from TimeStandard
#from_dynamical_date, #from_time_object, #has_leap?, #rate_of_clock, #to_dynamical_date, #to_time_object
Methods included from When::TimeStandard
_is_systemtime_universal?, _leap_seconds, _setup_, _setup_info, delta_t, delta_t_coordinated, delta_t_observed, delta_t_observed_nasa, delta_t_observed_poly, from_dynamical_time, from_time_object, to_dynamical_time, to_time_object
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
#from_dynamical_time(time) ⇒ Numeric
dynamical time を local mean time に変換する
574 575 576 |
# File 'lib/when_exe/timestandard.rb', line 574 def from_dynamical_time(time) super(time) + localtime_difference end |
#to_dynamical_time(time) ⇒ Numeric
local mean time を dynamical time に変換する
564 565 566 |
# File 'lib/when_exe/timestandard.rb', line 564 def to_dynamical_time(time) super(time - localtime_difference) end |