diff options
| author | Terry Truong <terry06890@gmail.com> | 2023-01-02 14:51:53 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2023-01-02 14:51:53 +1100 |
| commit | 56369bccd977ac726bef70895883e79da4e1edd8 (patch) | |
| tree | 67a894fe1579f2da150f0162ccbdc8a0a19ef9be /src/components/TimeLine.vue | |
| parent | 0e5e46cedaaeacf59cfd0f2e30c1ae6923466870 (diff) | |
Adjust wikidata event specifiers
Do minor refactors:
- Swap fmt=1 and fmt=2 in 'events' table
- Make documentation consistently use BC and AD
- import argparse at start of scripts
Diffstat (limited to 'src/components/TimeLine.vue')
| -rw-r--r-- | src/components/TimeLine.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/TimeLine.vue b/src/components/TimeLine.vue index 1e78a87..c869aa3 100644 --- a/src/components/TimeLine.vue +++ b/src/components/TimeLine.vue @@ -245,7 +245,7 @@ class Tick { } function getNumDisplayUnits({inclOffsets=true} = {}): number { // Get num major units in display range let unitDiff = Math.ceil(getUnitDiff(startDate.value, endDate.value, scale.value)); - // Note: Rounding up due to cases like 1 CE to 10 CE with 10-year scale + // Note: Rounding up due to cases like 1 AD to 10 AD with 10-year scale if (inclOffsets){ unitDiff += startOffset.value + endOffset.value; } @@ -886,7 +886,7 @@ function zoomTimeline(zoomRatio: number){ newStartOffset /= oldUnitsPerNew; newEndOffset /= oldUnitsPerNew; // Shift starting and ending points to align with new scale - // Note: There is some distortion due to not fully accounting for no year 0 CE here, + // Note: There is some distortion due to not fully accounting for no year 0 AD here, // but the result seems tolerable, and resolving it adds a fair bit of code complexity let newStartSubUnits = (scale.value == DAY_SCALE) ? getDaysInMonth(newStart.year, newStart.month) : @@ -929,7 +929,7 @@ function zoomTimeline(zoomRatio: number){ } else { newStart.year = Math.floor(newStart.year / newScale) * newScale; newEnd.year = Math.floor(newEnd.year / newScale) * newScale; - // Account for no 0 CE + // Account for no 0 AD if (newStart.year == 0){ newStart.year = 1; } |
