From 436574a5faa26823d48104d00c3f21e7e64da137 Mon Sep 17 00:00:00 2001 From: Quantum Date: Sun, 16 Jun 2024 22:43:35 -0400 Subject: [PATCH] Add some explanations for gcal --- gcal/public/index.html | 66 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/gcal/public/index.html b/gcal/public/index.html index 4372546..27713f6 100644 --- a/gcal/public/index.html +++ b/gcal/public/index.html @@ -45,6 +45,72 @@
+
+

Explanation

+
+
+

What is this?

+

This is an implementation of the Gregorian + calendar—which is the default civil calendar in most countries—with conversions to various other + calendars.

+

Currently, it displays the following conversions for each day, if possible:

+ +
+
+
+
+

How are BCE years handled?

+

The astronomical convention is used, i.e. year 0 is 1 BCE, year -1 is 2 BCE, etc.

+

Due to the way the common era (a.k.a. Anno Domini) year numbering system works, the year 1 BCE is + followed directly by 1 CE with no year zero. This makes math hard. As such, the astronomical convention + of making 1 BCE year 0 and extending this into the past was used.

+
+
+
+
+

What is the JD (Julian day number) value?

+

The integer Julian day (JD) number is the + continuous count of days since the beginning of the Julian period, which is very useful in astronomy and + in software for calculating durations without worrying about weird calendar issues. In this respect, + it's very similar to Unix time.

+

JD 0 is assigned to the date Monday, January 1, 4713 BCE (Julian) or November 24, 4714 BCE (Gregorian). + More specifically, if fractional JDs are considered, then the integer value specifically refers to the + Universal Time noon on that date.

+
+
+
+
+

What is the LC (Mesoamerican Long Count) date?

+

The five (or more) numbers separated by dots is the corresponding + Mesoamerican Long Count + calendar date. This is commonly known as the “Mayan calendar.” This calendar is not + available for dates before August 11, 3114 BCE (Gregorian) or September 6, 3114 BCE (Julian).

+
+
+
+
+

What is the FR (French Republican calendar) date?

+

The French Republican + calendar was a calendar created and implemented during the French Revolution. It is also frequently + referred to as the French Revolutionary Calendar, but this is a misnomer: + year 1 of the calendar started on 22 September 1792, the day after the + abolition of the + monarchy and the founding of the French + First Republic.

+

Specifically, the variant used here is the one I computed from + astronomy.

+
+
+