julian-date

1.0.1 • Public • Published

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)
 

Package Sidebar

Install

npm i julian-date

Weekly Downloads

42

Version

1.0.1

License

MIT

Last publish

Collaborators

  • jonhester