-
Notifications
You must be signed in to change notification settings - Fork 14
2. Julian Day Number
For the calculation of calendars such as the Myanmar calendar, it is convenient to calculate based on number of days. When counting the number of days, it is necessary to define a starting date called epoch. A popular day counting system used by astronomers is Julian Day Number (JDN). Julian Day Number is the day count starting from noon November 24, 4714 BC in the Gregorian calendar. A method to calculate Julian Day Number from a Gregorian date [UTSA, 2011] is shown below. The operation called floor takes the integer part of a number and discards its decimal part. For example, the result of floor(3.2)=⌊3.2⌋ is 3.
where jdn = Julian Day Number.
A method which can be used to convert a Julian Day Number to the corresponding Gregorian date [Myers, 2011] is also shown below.
where y = year; m = month; d= day; j = Julian Day Number.
Example: Find the Julian Day Number for 2000 CE January 1.year = 2000 Solution:
The Julian Day Number (JDN) is obtained as 2451545.