0.3.2 • Published 9 years ago

libhdate v0.3.2

Weekly downloads
3
License
GPLv3
Repository
github
Last release
9 years ago

libhdate-js

A pure javascript (partial) implementation of libhdate

NPM Version

Install

npm install libhdate

Basic Usage

// import this module
var Hdate = require("libhdate");

// create a new Hdate object
var h = new Hdate();

// Set the Date
h.setGdate(16, 5, 2015);

// Printout
console.log(h);

// get holydays
var holyday = h.getHolyday(h);
var omer = h.getOmerDay(h);
console.log(h.getHolydayName(holyday));
console.log(omer);

// get parasha for next shabbat
var reading = h.getShabbatsParasha(h);
console.log(h.getParashaName(reading));

// get times
var latitude = 32.07;
var longitude = 34.77;
var timeZone = 3 * 60;
var times = h.getSunTimeFull(h, latitude, longitude);

// adjust time zone
var timeStrings = times.slice(1).map(function (t) {
t += timeZone;
return "" + Math.floor(t / 60) + ":" + (t % 60);
});
console.log(timeStrings);
0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.0

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago