Logo

Contact:
Claus Tøndering –
(Please include the word “calendar” in the subject line)

The Julian Period

2024 is year

6737

in the current Julian Period

What is the Julian Period?

The Julian period (and the Julian Day) must not be confused with the Julian calendar.

The French scholar Joseph Justus Scaliger (1540-1609), pictured above, was interested in assigning a positive number to every year without having to worry about BC/AD. He invented what is today known as the Julian Period.

Scaliger himself stated that the Julian Period takes its name from the Julian calendar.

Scaliger’s Julian period starts on 1 January 4713 BC (Julian calendar) and lasts for 7980 years. After 7980 years the number starts from 1 again.

Why 4713 BC and why 7980 years? Well, in 4713 BC the Indiction, the Golden Number and the Solar Number were all 1. The next times this happens is 15×19×28=7980 years later, in AD 3268.

Current Julian Day:

What is the Julian Day?

Astronomers have used the Julian period to assign a unique number to every day since 1 January 4713 BC. This is the so-called Julian Day (JD) or Julian Day Number (JDN). JD 0 designates the 24 hours from noon TT on 1 January 4713 BC to noon TT on 2 January 4713 BC. (TT=Terrestrial Time, which is roughly equivalent to UTC. The current difference between the two is about one minute.[1])

This means that at noon TT on 1 January AD 2000, JD 2,451,545 started.

This can be calculated thus:

From 4713 BC to AD 2000 there are 6712 years. In the Julian calendar, years have 365.25 days, so 6712 years correspond to 6712×365.25=2,451,558 days. Subtract from this the 13 days that the Gregorian calendar is ahead of the Julian calendar, and you get 2,451,545.

Often fractions of Julian Days are used, so that 1 January AD 2000 at 15:00 TT is referred to as JD 2,451,545.125.

Note that some people use the term “Julian day number” to refer to any numbering of days. NASA, for example, uses the term to denote the number of days since 1 January of the current year, counting 1 January as day 1.

Is there a formula for calculating the Julian Day?

The following formula explains how to convert a calendar date to a Julian Day. (Click here for a description of the symbols   and   and the operator ‘mod’.)

a =
 14 – month 
12
y = year + 4800 – a
m = month + 12a – 3
 
For a date in the Gregorian calendar:
JD = day + 
 153m + 2 
5
 + 365y + 
 y 
4
 – 
 y 
100
 + 
 y 
400
 – 32045
 
For a date in the Julian calendar:
JD = day + 
 153m + 2 
5
 + 365y + 
 y 
4
 – 32083

JD is the Julian Day that starts at noon TT on the specified date.

The algorithm works fine for AD dates. If you want to use it for BC dates, you must first convert the BC year to a negative year (e.g., 10 BC = -9). The algorithm works correctly for all dates after 4800 BC, i.e. at least for all positive values of the Julian Day.

To convert the other way (i.e., to convert a Julian Day, JD, to a day, month, and year) these formulas can be used:

For the Gregorian calendar, calculate:
a = JD + 32044
b =
 4a + 3 
146097
c = a – 
 146097b 
4
 
For the Julian calendar, calculate:
b = 0
c = JD + 32082
 
Then for both calendars, calculate:
d =
 4c + 3 
1461
e = c – 
 1461d 
4
m =
 5e + 2 
153
 
day = e – 
 153m + 2 
5
 + 1
month = m + 3 – 12 × 
 m 
10
year = 100b + d – 4800 + 
 m 
10

Details about how these formulas work can be found in this PDF document.

What is the modified Julian Day?

Sometimes a modified Julian Day (MJD) is used which is 2,400,000.5 less than the Julian Day. This brings the numbers into a more manageable numeric range and makes the day numbers change at midnight TT rather than noon.

MJD 0 thus started on 17 Nov 1858 (Gregorian) at 00:00:00 TT.

What is the Lilian day number?

The Lilian Day Number is similar to the Julian Day, except that Lilian Day Number 1 started at midnight at the beginning of the first day of the Gregorian calendar, that is, 15 October 1582.

The Lilian Day Number was invented by Bruce G. Ohms of IBM in 1986. It is named after Aloysius Lilius.

In calendrical calculations, we frequently use an operation call integer division.

Ordinarily we would say that, for example, 14 divided by 5 is 2.8. But when we use integer division, we discard the decimal fraction and simply state that 14 divided by 5 is 2.

We indicate that we use integer division by enclosing the division between the symbols   and   , for example thus:

  14/5   = 2

or thus:

 14 
5
= 2

When we perform integer division, the division leaves a remainder. In the case of 14 divided by 5, the remainder is 4: We can subtract 5 twice from 14, and this leaves us with 4.

We use the mathematical operator ‘mod’ to indicate the remainder. This is known as the modulo operator. We therefore have:

14 mod 5 = 4

If you want to use integer division in computer programs, you must realize that different programs use different notations for the operations. The following table shows how integer division and the modulo operator may be written:

Integer division Modulo
The Calendar FAQ   14/5   14 mod 5
Microsoft Excel (English) INT(14/5) MOD(14,5)
Visual Basic 14 \ 5 14 Mod 5
C, C#, C++ 14 / 5 14 % 5

NOTE: What is said here only applies to division of positive numbers. Different programming languages handle integer division of negative numbers differently; therefore the formulas in the Calendar FAQ avoid using these operations on negative numbers.



References

^ [1] https://en.wikipedia.org/wiki/Terrestrial_Time, retrieved 15 November 2021.