1.0.0 • Published 4 years ago

juldate v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

juldate

javascript functions for converting date to julian day and vice versa. ES6 re-implementation from Mivion's Moshier Ephemeris

Note: only works with dates older than 1582!

Installation

npm install juldate

Usage

const juldate = require('juldate')

let d = new Date(), 
  j = juldate.date2julian(d);

console.log(d);
console.log(j);
console.log(juldate.julian2date(j));

License

MIT