You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 24, 2019. It is now read-only.
varJulianDate=require('julian-date');varj=newJulianDate();// Get the julian datej.julian();// 2457088.5// Get the javascript datej.getDate();// Fri Mar 06 2015 19:00:00 GMT-0500 (EST)// Get the julian daysj.julianDays();// 5543.5
Create new JulianDate from julian days or julian date
varJulianDate=require('julian-date');varj1=newJulianDate().julian(2457088.5);j1.getDate()// Fri Mar 06 2015 19:00:00 GMT-0500 (EST)varj2=newJulianDate().julianDays(5543.5)j2.getDate()// Fri Mar 06 2015 19:00:00 GMT-0500 (EST)
About
Convert javascript dates to julian dates and julian days