Next Full Moon Calculator

Find the exact date and time of the next full moon — and the ones after it.

Ad placeholder (leaderboard)
Enjoying the tools? Go Pro for £4.99 (one-time) and remove all ads — forever, on this device. Remove ads — £4.99

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.

  1. Convert to Julian Date: JD ≈ 2461192.5
  2. Days since reference: 2461192.5 − 2451550.1 = 9642.4
  3. Age = 9642.4 mod 29.530 589 ≈ 15.4 days (waxing gibbous)
  4. Days until full: 14.765 − 15.4 = −0.6 → add one synodic month → 28.9 days
  5. 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:

MonthNameOrigin
JanuaryWolf MoonWolves howled near villages in winter
FebruarySnow MoonHeaviest snowfalls of the year
MarchWorm MoonEarthworms emerge as ground thaws
AprilPink MoonWild ground phlox blooms (it is pink)
MayFlower MoonFlowers bloom abundantly
JuneStrawberry MoonStrawberry harvest season
JulyBuck MoonBucks begin to grow new antlers
AugustSturgeon MoonSturgeon most easily caught
SeptemberHarvest MoonFarmers work late by moonlight
OctoberHunter’s MoonHunting season begins
NovemberBeaver MoonBeavers preparing for winter
DecemberCold MoonLong, cold nights begin

All calculations run client-side — no data is sent anywhere.

Ad placeholder (rectangle)