Class: When::TimeStandard::TimeStandard

Inherits:
BasicTypes::Object show all
Includes:
When::TimeStandard
Defined in:
lib/when_exe/timestandard.rb

Overview

時刻系のひながた

Constant Summary collapse

Ratio =
1.0

Constants included from When::TimeStandard

DeltaT, DeltaT0, TAI_UTC

Constants included from Parts::Resource

Parts::Resource::LabelProperty, Parts::Resource::Prefix, Parts::Resource::PrefixIndex, Parts::Resource::PrefixKeys, Parts::Resource::PrefixValues

Instance Attribute Summary

Attributes inherited from BasicTypes::Object

#label

Attributes included from Parts::Resource

#_pool, #child, #keys, #locale, #namespace

Instance Method Summary collapse

Methods included from When::TimeStandard

_is_systemtime_universal?, _leap_seconds, _setup_, delta_t, delta_t_coordinated, delta_t_observed, from_dynamical_time, from_time_object, to_dynamical_time, to_time_object

Methods inherited from BasicTypes::Object

#tap

Methods included from Parts::Resource

#[], #^, _extract_prefix, _instance, _parse, _path_with_prefix, #each, #enum_for, #hierarchy, #include?, #included?, #iri, #leaf?, #m17n, #map, #next, #parent, #prev, #registered?

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 Method Details

#from_dynamical_date(date) ⇒ Numeric

dynamical date を当該時刻系の日付に変換する

Parameters:

  • date (Numeric)

    dynamical date

Returns:

  • (Numeric)

    当該時刻系の日付



309
310
311
312
313
# File 'lib/when_exe/timestandard.rb', line 309

def from_dynamical_date(date)
  When::TM::JulianDate._t_to_d(
    from_dynamical_time(
      When::TM::JulianDate._d_to_t(date)))
end

#from_dynamical_time(time) ⇒ Numeric

dynamical time を universal time に変換する

Parameters:

  • time (Numeric)

    dynamical time

Returns:



287
288
289
# File 'lib/when_exe/timestandard.rb', line 287

def from_dynamical_time(time)
  When::TimeStandard.from_dynamical_time(time)
end

#from_time_object(time) ⇒ Numeric

Time オブジェクトを universal time に変換する

Parameters:

Returns:



321
322
323
# File 'lib/when_exe/timestandard.rb', line 321

def from_time_object(time)
  from_dynamical_time(When::TimeStandard.from_time_object(time))
end

#has_leap?Boolean

当該時刻系に閏秒があるか?

Returns:

  • (Boolean)
    • false 閏秒なし



339
340
341
# File 'lib/when_exe/timestandard.rb', line 339

def has_leap?
  false
end

#rate_of_clockNumeric

時間の歩度

Returns:



347
348
349
# File 'lib/when_exe/timestandard.rb', line 347

def rate_of_clock
  self.class::Ratio
end

#to_dynamical_date(date) ⇒ Numeric

当該時刻系の日付を dynamical date に変換する

Parameters:

  • date (Numeric)

    当該時刻系の日付

Returns:



297
298
299
300
301
# File 'lib/when_exe/timestandard.rb', line 297

def to_dynamical_date(date)
  When::TM::JulianDate._t_to_d(
    to_dynamical_time(
      When::TM::JulianDate._d_to_t(date)))
end

#to_dynamical_time(time) ⇒ Numeric

universal time を dynamical time に変換する

Parameters:

  • time (Numeric)

    universal time

Returns:



277
278
279
# File 'lib/when_exe/timestandard.rb', line 277

def to_dynamical_time(time)
  When::TimeStandard.to_dynamical_time(time)
end

#to_time_object(time) ⇒ ::Time

universal time を Time オブジェクトに変換する

Parameters:

  • time (Numeric)

    universal time

Returns:



331
332
333
# File 'lib/when_exe/timestandard.rb', line 331

def to_time_object(time)
  When::TimeStandard.to_time_object(to_dynamical_time(time))
end