1.0.1 • Published 9 years ago

julian-date v1.0.1

Weekly downloads
24
License
MIT
Repository
github
Last release
9 years ago

julian-date npm MIT Build Status

Installing via NPM

npm install julian-date

Browser

Browser Download

<script src="julianDate.min.js"></script>
<script>
var j = new JulianDate();
</script>

Create new JulianDate

var JulianDate = require('julian-date');

var j = new Julian();

// Get the julian date
j.julian(); // 2457088.5

// Get the javascript date
j.getDate(); // Fri Mar 06 2015 19:00:00 GMT-0500 (EST)


// Get the julian days
j.julianDays(); // 5543.5

Create new JulianDate from julian days or julian date

var JulianDate = require('julian-date');

var j1 = new Julian().julian(2457088.5);
j1.getDate() // Fri Mar 06 2015 19:00:00 GMT-0500 (EST)

var j2 = new Julian().julianDays(5543.5)
j2.getDate() // Fri Mar 06 2015 19:00:00 GMT-0500 (EST)