Project

darian

0.01
No commit activity in last 3 years
No release in over 3 years
This is Ruby library to convert Earth time to Mars time in Darian calendar. It use 2002 version of calendar with Telescopic Epoch.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.0.10
>= 0
>= 0
>= 0
 Project Readme

Darian Mars Calendar Converter Build Status

This is Ruby library to convert Earth time to Mars time in Darian calendar.

The Darian calendar is a proposed system of time-keeping on the planet Mars. It was created by aerospace engineer and political scientist Thomas Gangale in 1985. This library use 2002 version of calendar with Telescopic Epoch (1609 instead of 1975 year in original calendar propose).

Based on JS converter by Thomas Gangale.

Sponsored by Evil Martians

Usage

require 'darian'

earth_time = Time.now
mars_time  = Darian.from_earth(earth_time)

mars_time.to_s #=> "214-09-17 15:07:17"

mars_time.year  #=> 214
mars_time.month #=> 9
mars_time.sol   #=> 17
mars_time.day   #=> 17

mars_time.month_name    #=> "Aries"
mars_time.week_sol_name #=> "Sol Martis"

earth_date = Date.today
mars_date  = Darian.from_earth(earth_date)