From 56369bccd977ac726bef70895883e79da4e1edd8 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Mon, 2 Jan 2023 14:51:53 +1100 Subject: 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 --- src/components/TimeLine.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/components') 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; } -- cgit v1.2.3