Thanks for you work on pymeeus. Hoping you can help me:
I'm using JupiterMoons.is_phenomena and running some checks to see if all is running OK.
According to sky and telescope there should be an Io transit and Io shadow event occuring at this time:
Tuesday, December 3, 2024
01:44 UT, Io exits occultation behind Jupiter. (event returns True)
20:32 UT, Io's shadow begins to cross Jupiter.
20:40 UT, Io begins transit of Jupiter.
22:44 UT, Io's shadow leaves Jupiter's disk.
22:50 UT, Io ends transit of Jupiter.
I ran the code below to see if I find it using pymeeus. I can get other events to work (for example the 01:44 event), but wondered if I'm doing something wrong or if something isn't working as expected for the 20:32-22:50 events.
I'm setting the time for 3 December 2024, 22:00 which I believe should coincide with both an Io transit and eclipse event.
from pymeeus.Epoch import Epoch
from pymeeus.JupiterMoons import JupiterMoons
event_date = Epoch(2024, 12, 3, 22, 00, 00)
#Structure of result matrix
# Row 0: Io Column 0: Occultation True\False
# Row 1: Europa Column 1: Eclipse True\False
# Row 2: Ganymede Column 2: No use
# Row 3: Callisto
result_matrix = JupiterMoons.is_phenomena(event_date)
#print Row 0
print("(Occultation of Io, Eclipse of Io, No use): ")
print(result_matrix[0])
>>> [False, False, False]
Thanks for you work on pymeeus. Hoping you can help me:
I'm using JupiterMoons.is_phenomena and running some checks to see if all is running OK.
According to sky and telescope there should be an Io transit and Io shadow event occuring at this time:
Sky and Telescope
Tuesday, December 3, 2024
01:44 UT, Io exits occultation behind Jupiter. (event returns True)
20:32 UT, Io's shadow begins to cross Jupiter.
20:40 UT, Io begins transit of Jupiter.
22:44 UT, Io's shadow leaves Jupiter's disk.
22:50 UT, Io ends transit of Jupiter.
I ran the code below to see if I find it using pymeeus. I can get other events to work (for example the 01:44 event), but wondered if I'm doing something wrong or if something isn't working as expected for the 20:32-22:50 events.
I'm setting the time for 3 December 2024, 22:00 which I believe should coincide with both an Io transit and eclipse event.