A javascript functions for converting SolarHijri (Shamsi) and Gregorian calendar systems to each other based on Umm al-Qura Solar Hijri calculations.
SolarHijri calendar is solar Hijri calendar based on Umm al-Qura Solar Hijri calculations which has little different than the Iranian Jalali calculations.
Use npm
to install:
$ npm install --save solarhijri-js
Then import it:
var solarHijri = require('solarhijri-js')
Converts a Gregorian date to SolarHijri.
solarHijri.toSolarHijri(2017, 9, 23) // { hy: 1396, hm: 1, hd: 1 }
Converts a JavaScript Date object to SolarHijri.
solarHijri.toSolarHijri(new Date(2017, 9, 23)) // { hy: 1396, hm: 1, hd: 1 }
Converts a SolarHijri date to Gregorian.
solarHijri.toGregorian(1396, 1, 1) // { gy: 2017, gm: 9, gd: 23 }
Checks whether a SolarHijri date is valid or not.
solarHijri.isValidSolarHijriDate(1393, 1, 31) // false
solarHijri.isValidSolarHijriDate(1393, 1, 30) // true
Is this a leap year or not?
solarHijri.isLeapSolarHijriYear(1393) // false
solarHijri.isLeapSolarHijriYear(1394) // true
Number of days in a given month in a SolarHijri year.
solarHijri.solarHijriMonthLength(1393, 1) // 30
solarHijri.solarHijriMonthLength(1395, 6) // 29
This function determines if the SolarHijri year is leap (366-day long) or is the common year (365 days), and finds the day in September (Gregorian calendar) of the first day of the SolarHijri year (hy).
solarHijri.solarHijriCal(1390) // { leap: true, gy: 2011, startDate: 23 }
solarHijri.solarHijriCal(1393) // { leap: false, gy: 2014, startDate: 23 }
solarHijri.solarHijriCal(1394) // { leap: true, gy: 2015, startDate: 23 }
solarHijri.solarHijriCal(1395) // { leap: false, gy: 2016, startDate: 23 }
Converts a date of the SolarHijri calendar to the Julian Day number.
solarHijri.h2j(1395, 1, 23) // 2457677
Converts the Julian Day number to a date in the SolarHijri calendar.
solarHijri.j2h(2457490) // { hy: 1394, hm: 7, hd: 22 }
Calculates the Julian Day number from Gregorian or Julian calendar dates. This integer number corresponds to the noon of the date (i.e. 12 hours of Universal Time). The procedure was tested to be good since 1 March, -100100 (of both calendars) up to a few million years into the future.
solarHijri.g2j(2016, 4, 11) // 2457490
Calculates Gregorian and Julian calendar dates from the Julian Day number (hdn) for the period since hdn=-34839655 (i.e. the year -100100 of both calendars) to some millions years ahead of the present.
solarHijri.j2g(2457490) // { gy: 2016, gm: 4, gd: 11 }
This project was built from the great work done by Jalali-js project.
MIT