UNPKG

astronomy-bundle

Version:

Bundle for astronomical calculations such as position of moon, sun and planets, sunrise, sunset or solar eclipses. Most of the calculations are based on Jean Meeus 'Astronomical Algorithms' book and the VSOP87 theory.

12 lines (11 loc) 361 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const solarEclipseList_1 = require("./constants/solarEclipseList"); function solarEclipseExists(toi) { if (!toi) { return false; } const jd0 = toi.getJulianDay0(); return solarEclipseList_1.SOLAR_ECLIPSES.includes(jd0); } exports.default = solarEclipseExists;