Replies: 6 comments 21 replies
-
What parameter do we use to get the S-T-O from the JPL Horizons API? (since I get several columns, and it'd be easier to deal with less columns) |
Beta Was this translation helpful? Give feedback.
-
In the summary for the Factors to consider for the moon dates, it states "The Matariki holiday is a Friday during or after the first Tangaroa Luna period after 19 June.", whereas in the governments report (https://www.mbie.govt.nz/assets/matariki-dates-2022-to-2052-matariki-advisory-group.pdf), it states "The Matariki holiday date falls on the closest Friday to the Tangaroa lunar calendar period of the correct lunar calendar month. As a result in some of their dates, the Matariki Holiday occurs before the Tangaroa period. Which condition do we take as true? |
Beta Was this translation helpful? Give feedback.
-
For 2037, by looking at the STO, it appears that the Tangaroa period starts on the 5th of July but in their document, they mentioned it starts on the 6th of July. Because of this, I am choosing the wrong Friday. Is this some kind of error or am I missing something? |
Beta Was this translation helpful? Give feedback.
-
Hello teams, |
Beta Was this translation helpful? Give feedback.
-
What value do I put for the |
Beta Was this translation helpful? Give feedback.
-
Why is the 19th June rule always true? I didn't quite get the reasoning. |
Beta Was this translation helpful? Give feedback.
-
Factors to consider when determining the Matariki holiday
Friday
The holiday is always on a Friday. How to determine the day of the week depends on the language you use. In JavaScript, for example, it is the
getDate()
function of theDate
class.Moon Phase
The holiday is ideally a Tangaroa night. There are normally 4 Tangaroa nights in a Māori lunar month, Tangaroa-ā-mua, Tangaroa-ā-roto, Tangaroa whakapau, and Tangaroa whāriki kiokio. In a 30-night month, these are the 23th to 26th nights. However, Tangaroa are the 23th to 25th nights in a 29-night months. As in Traditional Chinese Calendar, a Māori month starts at new moon.
The Tangaroa nights won't always include a Friday. In that case, the Friday after the starting of Tangaroa period will be the holiday if it is a weekday, and the Friday before if it is a weekend.
NZST
We will use midnight in New Zealand Standard Time (UTC+12) to determine the date where the new moon falls. For those trying to use the Traditional Chinese Calendar (TCC), please be mineful that TCC is based on the Chinese Standard Time (UTC+8).
Apparent position of Matariki cluster to the Sun
The Matariki cluster must be visible at dawn. This turns out to be the easiest factor. Since the Georgian calendar is a solar calendar, we can always predict the Matariki cluster becomes visible at dawn on and after 19 June every year. If you want to be even more precise, please see the Bonus Point at the end of this document.
Summary
The Matariki holiday is a Friday during or after the first Tangaroa Luna period after 19 June.
How to Find the Moon Phase
JPL Horizons
The most accurate way to calculate the moon phase is through Horizons System from NASA's Jet Propulsion Laboratory. For a quick check, you can use their web app. However, to do arbitrary predictions, you will need to use their API or a third party API wrapper for your language. More on that later.
Moon Phase from JPL Horizons
To predict the moon phase, you may use the following setting:
There is a Wikipedia page about the S-T-O phase angle.
A new moon happens when the S-T-O climbs to a local maximum (should be just below 180°, while 180° is a solar eclipse), and full moon when it declines to a local minimum (just above 0°, while 0° is a lunar eclipse).
In the example above, a new moon occurs at around 2022-May-30 11:11 UTC, and a full moon at around 2022-Jun-14 11:29.
JPL Horizons API Wrappers
Other Ways of Calculating Moon Phase
If you are using other method, you may want to compare your results with the one from JPL Horizons.
Bonus Point - determining when Matariki can be visible by its coordinates
Instead of using the rule of thumb of 19 June to predict the rise of Matariki, you can calculate the locations of the sun and Matariki cluster and see when the cluster is visible at dawn.
To do this you will need to find out horizontal coordinates (AZ/EL) for both objects. The AZ/EL for the sun can be retrieved from JPL Horizons. For the Matariki cluster, you will need to convert its equatorial coordinate (RA/DEC) (which can be safely assumed to be constants) to its AZ/EL. This conversion can be done for example using Astropy in python.
Beta Was this translation helpful? Give feedback.
All reactions