0.0
No commit activity in last 3 years
No release in over 3 years
This Ruby library converts earth time to mars time and back again. You can choose between 5 variants of the Darian calendar system; Martiana, Defrost, Areosynchronous, Hensel and Aqua.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Darian Calendar

Gem Version Build Status Coverage Status License

The Darian calendar is a proposed system of time-keeping designed to serve the needs of any possible future human settlers on the planet Mars. It was created by aerospace engineer and political scientist Thomas Gangale in 1985 and named by him after his son Darius. (Wikipedia)

This Ruby library converts earth time to mars time and back again. You can choose between 5 variants of the Darian calendar system; Martiana, Defrost, Areosynchronous, Hensel and Aqua.

It's based on the JavaScript Converter which was developed by Alan Hensel and Thomas Gangale.

Installation

In Bundler:

gem "darian_calendar"

Otherwise:

[sudo|rvm] gem install darian_calendar

Usage

require 'darian_calendar'

Date

mars_date = DarianCalendar.today
mars_date = DarianCalendar::Date.today
mars_date = DarianCalendar::Time.now.to_date
mars_date = DarianCalendar::Date.by_digits(214, 14, 26)
mars_date = DarianCalendar::Date.parse_earth('2012-10-15')
mars_date = DarianCalendar::Date.from_earth(Date.new(2012, 10, 15))

Time

mars_time = DarianCalendar.now
mars_time = DarianCalendar::Time.now
mars_time = DarianCalendar::Time.by_digits(214, 14, 26, 20, 12, 2)
mars_time = DarianCalendar::Time.parse_earth('2012-10-15 16:50:00 UTC')
mars_time = DarianCalendar::Time.from_earth(Time.utc(2012, 10, 15, 16, 50, 0))

Attributes/Methods

mars_time.to_s #=> '214-14-26 20:10:02'

mars_time.year  #=> 214
mars_time.month #=> 14
mars_time.sol   #=> 26
mars_time.hour  #=> 20
mars_time.min   #=> 10
mars_time.sec   #=> 2

mars_time.total_sols      #=> 143466.84030197054
mars_time.season          #=> 2
mars_time.sol_of_season   #=> 53
mars_time.month_of_season #=> 1
mars_time.sol_of_year     #=> 387
mars_time.week_sol        #=> 5

mars_time.month_name      #=> 'Sol Jovis'
mars_time.week_sol_name   #=> 'Mithuna'

Convert back to earth time

mars_date = DarianCalendar::Date.by_digits(2012, 10, 15)
mars_date.to_earth #=> 2012-10-15

mars_time = DarianCalendar::Time.from_earth(Time.utc(2012, 10, 15, 16, 50, 0))
mars_time.to_earth #=> 2012-10-15 16:50:00 UTC

Variants of the Darian Calendar System

DarianCalendar::CalendarTypes::MARTIANA #=> Default
DarianCalendar::CalendarTypes::DEFROST
DarianCalendar::CalendarTypes::AREOSYNCHRONOUS
DarianCalendar::CalendarTypes::HENSEL
DarianCalendar::CalendarTypes::AQUA
# How to use
mars_date = DarianCalendar::Date.by_digits(214, 14, 26, DarianCalendar::CalendarTypes::AREOSYNCHRONOUS)
mars_time = DarianCalendar.now(DarianCalendar::CalendarTypes::DEFROST)

Supported Ruby Interpreters

This library aims to support and is tested against the following Ruby interpreters and versions:

  • MRI 1.9.2
  • MRI 1.9.3
  • MRI 2.0.0
  • MRI 2.1.0
  • JRuby
  • Rubinius

Testing

Unit tests are provided for all of Darian Calendar's methods:

# From anywhere in the project directory:
bundle exec rspec

Copyright

  • The Darian Calendar Ruby Gem is Copyright © 2014 by Christian Worreschk.
  • The Darian System is Copyright © 1986-2005 by Thomas Gangale

License

This Darian Calendar Ruby Gem is released under the MIT Licence.