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, DeltaThreshold, TAI_UTC, YearThreshold

Constants included from Parts::Resource

Parts::Resource::LabelProperty

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

#[], #^, _decode, _encode, _extract_prefix, _instance, _parse, _path_with_prefix, _replace_tags, _setup_, #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)

    当該時刻系の日付



431
432
433
434
435
# File 'lib/when_exe/timestandard.rb', line 431

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:



409
410
411
# File 'lib/when_exe/timestandard.rb', line 409

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

#from_time_object(time) ⇒ Numeric

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

Parameters:

Returns:



443
444
445
# File 'lib/when_exe/timestandard.rb', line 443

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

#has_leap?Boolean

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

Returns:

  • (Boolean)
    • false 閏秒なし



461
462
463
# File 'lib/when_exe/timestandard.rb', line 461

def has_leap?
  false
end

#rate_of_clockNumeric

時間の歩度

Returns:



469
470
471
# File 'lib/when_exe/timestandard.rb', line 469

def rate_of_clock
  self.class::Ratio
end

#to_dynamical_date(date) ⇒ Numeric

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

Parameters:

  • date (Numeric)

    当該時刻系の日付

Returns:



419
420
421
422
423
# File 'lib/when_exe/timestandard.rb', line 419

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:



399
400
401
# File 'lib/when_exe/timestandard.rb', line 399

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:



453
454
455
# File 'lib/when_exe/timestandard.rb', line 453

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