Replace week notation with day.month date format; fix leap year M2-M9 DOY offset and holiday count
This commit is contained in:
@@ -116,7 +116,7 @@
|
||||
Decimal time was paired with it for the same reason: the standard 24-hour clock is an arbitrary
|
||||
Babylonian inheritance. Dividing the day into 10 hours of 100 minutes of 100 seconds gives a
|
||||
fully base-10 time system that is easier to reason about and calculate with.
|
||||
All units in the Seth system — months, weeks, days, hours, minutes, seconds — are zero-indexed.
|
||||
All units in the Seth system — months, days, hours, minutes, seconds — are zero-indexed.
|
||||
</p>
|
||||
<p>
|
||||
Credit is due to the <strong>French Republican Calendar</strong> (1793), which pioneered both ideas:
|
||||
@@ -134,27 +134,32 @@
|
||||
<div class="seth-note">
|
||||
<p>
|
||||
<strong>Seth Date</strong> uses the same year numbers and January 1 new year as the Gregorian
|
||||
calendar. The year is divided into <strong>10 months of 36 days</strong> (6 weeks of 6 days each),
|
||||
calendar. The year is divided into <strong>10 months of 36 days each</strong>,
|
||||
followed by <strong>5 holiday days</strong> at year end (6 on leap years).
|
||||
All units are <strong>zero-indexed</strong>: months 0–9, days 0–35, weeks 0–5, weekdays 0–5.
|
||||
All units are <strong>zero-indexed</strong>: months 0–9, days-of-month 0–35.
|
||||
Time uses the same decimal system: 10 hours, 100 minutes, 100 seconds per day.
|
||||
The Seth second is derived from the Unix second (which equals the SI second, leap seconds aside)
|
||||
at a fixed ratio: <strong>1 Seth second = 0.864 SI seconds</strong> (86,400 SI seconds per day ÷ 100,000 Seth seconds per day).
|
||||
</p>
|
||||
<p>
|
||||
<strong>Leap Day</strong> (Gregorian Feb 29) is a special intercalary day that exists
|
||||
<em>outside</em> the normal month and week structure. It is inserted between Month 1, Week 3, Day 4
|
||||
and Month 1, Week 3, Day 5 — occupying DOY 60 in its own slot. After Leap Day the calendar
|
||||
resumes at D5 unchanged, which is why every Seth date from March 1 onward falls on the same
|
||||
Gregorian date every year (e.g. Christmas is always Month 9, Day 34). On the calendar it appears
|
||||
as a split cell sharing the D4 column: the top half is the normal D4 day, the bottom half is Leap Day.
|
||||
</p>
|
||||
<p><strong>Reading the date:</strong> dates are written as
|
||||
<em>Year M W D</em> —
|
||||
e.g. <em>Month 3, Week 2, Day 4</em> means the 3rd month (0-indexed), week 2, day 4 of that week,
|
||||
which is day 16 of the month (2×6 + 4).
|
||||
Holiday days are written as <em>Holiday N</em> (N = 0–4, or 0–5 on leap years) and fall outside any month or week.
|
||||
<em>outside</em> the normal month structure. It is inserted at day-of-year 60, between
|
||||
day 22 and day 23 of Month 1. After Leap Day the calendar resumes unchanged, which is why
|
||||
every Seth date from March 1 onward falls on the same Gregorian date every year
|
||||
(e.g. Christmas is always Month 9, Day 34). On the calendar it appears as a split cell:
|
||||
the top half is day 22, the bottom half is Leap Day.
|
||||
</p>
|
||||
<p><strong>Date notation:</strong> dates are written as <em>day.month</em> (day-of-month first, zero-indexed).</p>
|
||||
<table class="ref-table">
|
||||
<thead><tr><th>Format</th><th>Pattern</th><th>Example (day 16 of month 3, year 2026)</th></tr></thead>
|
||||
<tbody>
|
||||
<tr><td>Short</td><td>D.M</td><td>16.3</td></tr>
|
||||
<tr><td>Medium</td><td>D.M.YY</td><td>16.3.26</td></tr>
|
||||
<tr><td>Log</td><td>DD.M.YYYY</td><td>16.3.2026</td></tr>
|
||||
<tr><td>Full / reverse</td><td>YYYY.M.DD</td><td>2026.3.16</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>Holiday days are written as <em>H0</em>–<em>H4</em> (or <em>H5</em> on leap years).</p>
|
||||
<p><strong>Months</strong> (months 0–9, days 0–35, approx. Gregorian ranges):</p>
|
||||
<table class="ref-table">
|
||||
<thead><tr><th>#</th><th>Days</th><th>Approx. Gregorian</th><th>Notes</th></tr></thead>
|
||||
@@ -171,34 +176,21 @@
|
||||
<tr><td>9</td><td>0–35</td><td>Nov 21 – Dec 26</td><td>Ends Dec 25 on leap years</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><strong>Weeks</strong> (weeks 0–5 within each month, days 0–5 within each week):</p>
|
||||
<table class="ref-table">
|
||||
<thead><tr><th>Week</th><th>Days</th></tr></thead>
|
||||
<tbody>
|
||||
<tr><td>0</td><td>0–5</td></tr>
|
||||
<tr><td>1</td><td>6–11</td></tr>
|
||||
<tr><td>2</td><td>12–17</td></tr>
|
||||
<tr><td>3</td><td>18–23</td></tr>
|
||||
<tr><td>4</td><td>24–29</td></tr>
|
||||
<tr><td>5</td><td>30–35</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><strong>Holiday days</strong> (after Month 9, Day 35):</p>
|
||||
<p><strong>Holiday days</strong> (after Month 9, Day 35 — always exactly 5):</p>
|
||||
<table class="ref-table">
|
||||
<thead><tr><th>Holiday</th><th>Normal year</th><th>Leap year</th></tr></thead>
|
||||
<tbody>
|
||||
<tr><td>H0</td><td>Dec 27</td><td>Dec 26 — Boxing Day</td></tr>
|
||||
<tr><td>H1</td><td>Dec 28</td><td>Dec 27</td></tr>
|
||||
<tr><td>H2</td><td>Dec 29</td><td>Dec 28</td></tr>
|
||||
<tr><td>H3</td><td>Dec 30</td><td>Dec 29</td></tr>
|
||||
<tr><td>H4</td><td>Dec 31 — New Year's Eve</td><td>Dec 30</td></tr>
|
||||
<tr><td>H5*</td><td>—</td><td>Dec 31 — New Year's Eve</td></tr>
|
||||
<tr><td>H0</td><td>Dec 27</td><td>Dec 27</td></tr>
|
||||
<tr><td>H1</td><td>Dec 28</td><td>Dec 28</td></tr>
|
||||
<tr><td>H2</td><td>Dec 29</td><td>Dec 29</td></tr>
|
||||
<tr><td>H3</td><td>Dec 30</td><td>Dec 30</td></tr>
|
||||
<tr><td>H4</td><td>Dec 31 — New Year's Eve</td><td>Dec 31 — New Year's Eve</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p style="font-size:0.8rem;">
|
||||
* Leap years only.<br>
|
||||
Leap Day (Feb 29) is the intercalary day, not an extra holiday.<br>
|
||||
Christmas (Dec 25) falls on Month 9, Day 34 in normal years, and Month 9, Day 35 in leap years.<br>
|
||||
Dec 26 (Boxing Day) is Month 9, Day 35 in normal years, and Holiday 0 in leap years.
|
||||
Dec 26 (Boxing Day) is Month 9, Day 35 in normal years, and Month 9, Day 35 in leap years (same slot, one day earlier Gregorian).
|
||||
</p>
|
||||
</div>
|
||||
</details>
|
||||
|
||||
Reference in New Issue
Block a user