Hi there @tsutterley... I noticed a divergence between two definitions on calc_astrol_longitudes.py: equations are identical, but ASTRO5 has T defined in days and MEEUS uses T in centuries.
if MEEUS:# convert from MJD to days relative to 2000-01-01T12:00:00T = MJD - 51544.5#...# mean longitude of solar perigee (Simon et al., 1994)PP = 282.94 + 1.7192 * T
elif ASTRO5:# convert from MJD to centuries relative to 2000-01-01T12:00:00T = (MJD - 51544.5)/36525.0# ...# mean longitude of solar perigee (Simon et al., 1994)PP = 282.94 + 1.7192 * T
Hi there @tsutterley... I noticed a divergence between two definitions on calc_astrol_longitudes.py: equations are identical, but ASTRO5 has T defined in days and MEEUS uses T in centuries.
if MEEUS:
# convert from MJD to days relative to 2000-01-01T12:00:00
T = MJD - 51544.5
#...
# mean longitude of solar perigee (Simon et al., 1994)
PP = 282.94 + 1.7192 * T
elif ASTRO5:
# convert from MJD to centuries relative to 2000-01-01T12:00:00
T = (MJD - 51544.5)/36525.0
# ...
# mean longitude of solar perigee (Simon et al., 1994)
PP = 282.94 + 1.7192 * T