diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-11-12 16:57:22 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-11-12 16:57:22 +0100 |
commit | 559ac84addd27c135f5799304434ad3ef872555d (patch) | |
tree | 5d06f61b62ff69760d83f63ca42927f7f61d1d1f /src/op_mode/maya_date.py | |
parent | 7e6e5a211325b8f00e58a01a67ad2c01d073ff2a (diff) | |
parent | 718d9a123c2ba72b87d7f6e48a5e6d83fa86d494 (diff) | |
download | vyos-1x-559ac84addd27c135f5799304434ad3ef872555d.tar.gz vyos-1x-559ac84addd27c135f5799304434ad3ef872555d.zip |
Merge branch 'current' into crux
Diffstat (limited to 'src/op_mode/maya_date.py')
-rwxr-xr-x | src/op_mode/maya_date.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/op_mode/maya_date.py b/src/op_mode/maya_date.py index 7d8aefc91..847b543e0 100755 --- a/src/op_mode/maya_date.py +++ b/src/op_mode/maya_date.py @@ -27,17 +27,16 @@ class MayaDate(object): It represents the number of days passed since some date in the past the Maya believed is the day our world was created. - + Tzolkin calendar is for religious purposes, it has two independent cycles of 13 and 20 days, where 13 day cycle days are numbered, and 20 day cycle days are named. - + Haab calendar is for agriculture and daily life, it's a 365 day calendar with 18 months 20 days each, and 5 nameless days. The smallest unit of the long count calendar is one day (kin). - """ """ The long count calendar uses five different base 18 or base 20 @@ -131,7 +130,7 @@ class MayaDate(object): """ Seconds in day, for conversion from timestamp """ seconds_in_day = 60 * 60 * 24 - + def __init__(self, timestamp): if timestamp is None: self.days = self.start_days |