From ae7d758f4beb503f03c9ee45b05bf6568b3d5064 Mon Sep 17 00:00:00 2001 From: "Michael J. Roberts" <84131395+michealroberts@users.noreply.github.com> Date: Tue, 17 Oct 2023 20:01:14 +0100 Subject: [PATCH] feat: Added LUNAR_SYNODIC_MONTH constant to moon module in @observerly/astrometry. feat: Added LUNAR_SYNODIC_MONTH constant to moon module in @observerly/astrometry. --- src/moon.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/moon.ts b/src/moon.ts index 29a57a9..4dec968 100644 --- a/src/moon.ts +++ b/src/moon.ts @@ -32,6 +32,18 @@ export const LUNATION_BASE_JULIAN_DAY = 2423436.6115277777 /*****************************************************************************************************************/ +/** + * + * + * The time between two identical Lunar syzygies, equivalent of 29.53059 + * Earth days, which is based on Mean Synodic Month, 2000 AD mean solar days. + * + * + */ +export const LUNAR_SYNODIC_MONTH = 29.530588853 + +/*****************************************************************************************************************/ + export const Phases = { New: 'New', WaxingCrescent: 'Waxing Crescent',