mars date utils:用于在火星上工作JavaScript库 源码
火星日期实用程序 与时间一起在火星上工作 入门 通过向其传递地球日期来创建MarsDate的新实例。 import { MarsDate } from "mars-date-utils" ; const spiritRoverLanding = new Date ( 1073190900000 ) ; // 2004-01-04T04:35:00.000Z const marsDate = new MarsDate ( spiritRoverLanding ) ; 基本时间方法 这些方法为您指定的地球日期时间返回火星上的日期时间。 mars-date-utils可以返回“火星年”,“太阳经度”(科学家用于确定季节)和“火星子午线”的平均太阳时间(经度0)。 marsDate . getCalendarYear ( ) ; // Returns the Mars Year, with Y
用户评论