The full moon has guided calendars, harvests, tides, and folklore for as long as humans have looked up. This tool tells you exactly when the next one arrives — and up to eleven after that — using the same lunar arithmetic astronomers have relied on for centuries, calculated entirely in your browser.
How the formula works
The Moon orbits Earth in an ellipse. The time from one new moon to the next — the synodic month — averages 29.530 588 853 days. That precise figure is the only number the calculator needs, together with a single fixed anchor: a known new moon occurred on 6 January 2000 at 18:14 UTC (Julian date 2451550.1).
Given any date, the tool computes the Moon’s age within its current cycle:
age = (JD_now - JD_ref) mod 29.530 588 853
A full moon occurs at age ≈ 14.765 days (half a synodic month). The days remaining until the next full moon are simply:
days_until_full = 14.765 − age (add one synodic month if the result is negative or zero)
Each subsequent full moon is exactly one synodic month later. The illuminated fraction of the disc at any point follows:
illumination = (1 − cos(2π × age/29.531)) / 2
At a full moon this evaluates to 100%; at a new moon, 0%.
Worked example
Suppose today is 1 June 2026.
- Convert to Julian Date: JD ≈ 2461192.5
- Days since reference: 2461192.5 − 2451550.1 = 9642.4
- Age = 9642.4 mod 29.530 589 ≈ 15.4 days (waxing gibbous)
- Days until full: 14.765 − 15.4 = −0.6 → add one synodic month → 28.9 days
- Next full moon ≈ 29 June 2026 — the Strawberry Moon
The illumination on that date: (1 − cos(2π × 14.765/29.531)) / 2 ≈ 100%
The table then advances by 29.53 days for each successive entry: Buck Moon (July), Sturgeon Moon (August), and so on.
Traditional moon names
Each full moon carries a folk name rooted in the natural calendar of the Northern Hemisphere:
| Month | Name | Origin |
|---|---|---|
| January | Wolf Moon | Wolves howled near villages in winter |
| February | Snow Moon | Heaviest snowfalls of the year |
| March | Worm Moon | Earthworms emerge as ground thaws |
| April | Pink Moon | Wild ground phlox blooms (it is pink) |
| May | Flower Moon | Flowers bloom abundantly |
| June | Strawberry Moon | Strawberry harvest season |
| July | Buck Moon | Bucks begin to grow new antlers |
| August | Sturgeon Moon | Sturgeon most easily caught |
| September | Harvest Moon | Farmers work late by moonlight |
| October | Hunter’s Moon | Hunting season begins |
| November | Beaver Moon | Beavers preparing for winter |
| December | Cold Moon | Long, cold nights begin |
All calculations run client-side — no data is sent anywhere.