1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
|
/*
* Project-wide globals
*/
import {RBTree} from './rbtree';
export const DEBUG = true;
export let WRITING_MODE_HORZ = true;
// Used with ResizeObserver callbacks, to determine which resized dimensions are width and height
if ('writing-mode' in window.getComputedStyle(document.body)){ // Can be null when testing
WRITING_MODE_HORZ = window.getComputedStyle(document.body)['writing-mode' as any].startsWith('horizontal');
}
// Similar to %, but for negative LHS, return a positive offset from a lower RHS multiple
export function moduloPositive(x: number, y: number){
return x - Math.floor(x / y) * y;
}
// Used to async-await for until after a timeout
export async function timeout(ms: number){
return new Promise(resolve => setTimeout(resolve, ms))
}
// For calendar conversion (mostly copied from backend/hist_data/cal.py)
export function gregorianToJdn(year: number, month: number, day: number): number {
if (year < 0){
year += 1;
}
const x = Math.trunc((month - 14) / 12);
let jdn = Math.trunc(1461 * (year + 4800 + x) / 4);
jdn += Math.trunc((367 * (month - 2 - 12 * x)) / 12);
jdn -= Math.trunc((3 * Math.trunc((year + 4900 + x) / 100)) / 4);
jdn += day - 32075;
return jdn;
}
export function julianToJdn(year: number, month: number, day: number): number {
if (year < 0){
year += 1;
}
let jdn = 367 * year;
jdn -= Math.trunc(7 * (year + 5001 + Math.trunc((month - 9) / 7)) / 4);
jdn += Math.trunc(275 * month / 9);
jdn += day + 1729777;
return jdn;
}
export function jdnToGregorian(jdn: number): [number, number, number] {
const f = jdn + 1401 + Math.trunc((Math.trunc((4 * jdn + 274277) / 146097) * 3) / 4) - 38;
const e = 4 * f + 3;
const g = Math.trunc((e % 1461) / 4);
const h = 5 * g + 2;
const D = Math.trunc((h % 153) / 5) + 1;
const M = (Math.trunc(h / 153) + 2) % 12 + 1;
let Y = Math.trunc(e / 1461) - 4716 + Math.trunc((12 + 2 - M) / 12);
if (Y <= 0){
Y -= 1;
}
return [Y, M, D];
}
export function jdnToJulian(jdn: number): [number, number, number] {
const f = jdn + 1401;
const e = 4 * f + 3;
const g = Math.trunc((e % 1461) / 4);
const h = 5 * g + 2;
const D = Math.trunc((h % 153) / 5) + 1;
const M = (Math.trunc(h / 153) + 2) % 12 + 1;
let Y = Math.trunc(e / 1461) - 4716 + Math.trunc((12 + 2 - M) / 12);
if (Y <= 0){
Y -= 1;
}
return [Y, M, D];
}
export function julianToGregorian(year: number, month: number, day: number): [number, number, number] {
return jdnToGregorian(julianToJdn(year, month, day));
}
export function gregorianToJulian(year: number, month: number, day: number): [number, number, number] {
return jdnToJulian(gregorianToJdn(year, month, day));
}
export function getDaysInMonth(year: number, month: number){
return gregorianToJdn(year, month + 1, 1) - gregorianToJdn(year, month, 1);
}
// For date representation
export const MIN_CAL_YEAR = -4713; // Earliest year where months/day scales are usable
export class HistDate {
gcal: boolean | null;
year: number;
month: number;
day: number;
constructor(gcal: boolean | null, year: number, month: number, day: number){
this.gcal = gcal;
this.year = year;
this.month = gcal == null ? 1 : month;
this.day = gcal == null ? 1 : day;
}
equals(other: HistDate, scale=DAY_SCALE){
if (scale == DAY_SCALE){
return this.year == other.year && this.month == other.month && this.day == other.day;
} else if (scale == MONTH_SCALE){
return this.year == other.year && this.month == other.month;
} else {
return Math.floor(this.year / scale) == Math.floor(other.year / scale);
}
}
clone(){
return new HistDate(this.gcal, this.year, this.month, this.day);
}
isEarlier(other: HistDate, scale=DAY_SCALE){
const yearlyScale = scale != DAY_SCALE && scale != MONTH_SCALE;
const thisYear = yearlyScale ? Math.floor(this.year / scale) : this.year;
const otherYear = yearlyScale ? Math.floor(other.year / scale) : other.year;
if (yearlyScale || thisYear != otherYear){
return thisYear < otherYear;
} else {
if (scale == MONTH_SCALE || this.month != other.month){
return this.month < other.month;
} else {
return this.day < other.day;
}
}
}
cmp(other: HistDate, scale=DAY_SCALE){
if (this.isEarlier(other, scale)){
return -1;
} else if (!this.equals(other, scale)){
return 1;
} else {
return 0;
}
}
getDayDiff(other: HistDate){ // Assumes neither date has gcal=null
const jdn2 = gregorianToJdn(this.year, this.month, this.day);
const jdn1 = gregorianToJdn(other.year, other.month, other.day);
return Math.abs(jdn1 - jdn2);
}
getMonthDiff(other: HistDate){
// Determine earlier date
let earlier = this as HistDate;
let later = other;
if (other.year < this.year || other.year == this.year && other.month < this.month){
earlier = other;
later = this as HistDate;
}
//
const yearDiff = earlier.getYearDiff(later);
if (yearDiff == 0){
return later.month - earlier.month;
} else {
return (13 - earlier.month) + (yearDiff - 1) * 12 + later.month - 1;
}
}
getYearDiff(other: HistDate){
let yearDiff = Math.abs(this.year - other.year);
if (this.year * other.year < 0){ // Account for no 0 CE
yearDiff -= 1;
}
return yearDiff;
}
toString(){
if (this.gcal != null){
return `${this.year}-${this.month}-${this.day}`;
} else {
return `${this.year}`;
}
}
toDisplayString(){
if (this.month == 1 && this.day == 1){
if (this.year > 0){
return String(this.year);
} else if (this.year > -1e3){
return String(-this.year) + ' BC';
} else if (this.year > -1e6){
if (this.year % 1e3 == 0){
return String(Math.floor(-this.year / 1e3)) + 'k BC';
} else if (this.year % 100 == 0){
return String(Math.floor(-this.year / 100) / 10) + 'k BC';
} else {
return String(-this.year) + ' BC';
}
} else if (this.year > -1e9){
if (this.year % 1e6 == 0){
return String(Math.floor(-this.year / 1e6)) + ' mya';
} else if (this.year % 1e3 == 0){
return String(Math.floor(-this.year / 1e3) / 1e3) + ' mya';
} else {
return String(-this.year.toLocaleString());
}
} else {
if (this.year % 1e9 == 0){
return String(Math.floor(-this.year / 1e9)) + ' bya';
} else if (this.year % 1e6 == 0){
return String(Math.floor(-this.year / 1e6) / 1e3) + ' bya';
} else {
return String(this.year.toLocaleString());
}
}
} else if (this.day == 1){
const monthNames = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
return monthNames[this.month - 1];
} else {
if (this.day == 1){
return '1st';
} else if (this.day == 2){
return '2nd';
} else if (this.day == 3){
return '3rd';
} else {
return String(this.day) + 'th';
}
}
}
toInt(){ // Used for v-for keys
return this.day + this.month * 50 + this.year * 1000;
}
}
export class YearDate extends HistDate {
declare gcal: null;
declare year: number;
declare month: 1;
declare day: 1;
constructor(year=MIN_CAL_YEAR-1){
if (year >= MIN_CAL_YEAR){
throw new Error(`Year must be before ${MIN_CAL_YEAR}`);
}
super(null, year, 1, 1);
}
}
export class CalDate extends HistDate {
declare gcal: boolean;
declare year: number;
declare month: number;
declare day: number;
constructor(year: number, month: number, day: number, gcal=true){
if (year < MIN_CAL_YEAR){
throw new Error(`Year must not be before ${MIN_CAL_YEAR}`);
}
super(gcal, year, month, day);
}
}
// For event representation
export class HistEvent {
id: number;
title: string;
start: HistDate;
startUpper: HistDate | null;
end: HistDate | null;
endUpper: HistDate | null;
ctg: string;
imgId: number;
pop: number;
constructor(
id: number, title: string, start: HistDate, startUpper: HistDate | null = null,
end: HistDate | null = null, endUpper: HistDate | null = null, ctg='', imgId=0, pop=0){
this.id = id;
this.title = title;
this.start = start;
this.startUpper = startUpper;
this.end = end;
this.endUpper = endUpper;
this.ctg = ctg;
this.imgId = imgId;
this.pop = pop;
}
}
export function cmpHistEvent(event: HistEvent, event2: HistEvent){
const cmp = event.start.cmp(event2.start);
return cmp != 0 ? cmp : event.id - event2.id;
}
// For server requests
const SERVER_DATA_URL = (new URL(window.location.href)).origin + '/data/'
const SERVER_IMG_PATH = '/hist_data/img/'
export async function queryServer(params: URLSearchParams, serverDataUrl=SERVER_DATA_URL){
// Construct URL
const url = new URL(serverDataUrl);
url.search = params.toString();
// Query server
let responseObj;
try {
const response = await fetch(url.toString());
responseObj = await response.json();
} catch (error){
console.log(`Error with querying ${url.toString()}: ${error}`);
return null;
}
return responseObj;
}
export function getImagePath(imgId: number): string {
return SERVER_IMG_PATH + String(imgId) + '.jpg';
}
// For server responses
export type HistDateJson = {
gcal: boolean | null,
year: number,
month: number,
day: number,
}
export type HistEventJson = {
id: number,
title: string,
start: HistDateJson,
startUpper: HistDateJson | null,
end: HistDateJson | null,
endUpper: HistDateJson | null,
ctg: string,
imgId: number,
pop: number,
}
export function jsonToHistDate(json: HistDateJson){
if (json.gcal == null){
return new YearDate(json.year);
} else {
return new CalDate(json.year, json.month, json.day, json.gcal);
}
}
export function jsonToHistEvent(json: HistEventJson){
return {
id: json.id,
title: json.title,
start: jsonToHistDate(json.start),
startUpper: json.startUpper == null ? null : jsonToHistDate(json.startUpper),
end: json.end == null ? null : jsonToHistDate(json.end),
endUpper: json.endUpper == null ? null : jsonToHistDate(json.endUpper),
ctg: json.ctg,
imgId: json.imgId,
pop: json.pop,
};
}
// For dates in a timeline
const currentDate = new Date();
export const MIN_DATE = new YearDate(-13.8e9);
export const MAX_DATE = new CalDate(currentDate.getFullYear(), currentDate.getMonth() + 1, currentDate.getDate());
export const MONTH_SCALE = -1;
export const DAY_SCALE = -2;
export const SCALES = [1e9, 1e8, 1e7, 1e6, 1e5, 1e4, 1e3, 100, 10, 1, MONTH_SCALE, DAY_SCALE];
// The timeline will be divided into units of SCALES[0], then SCALES[1], etc
// Positive ints represent numbers of years, -1 represents 1 month, -2 represents 1 day
if (DEBUG){
if (SCALES[SCALES.length - 1] != DAY_SCALE
|| SCALES[SCALES.length - 2] != MONTH_SCALE
|| SCALES[SCALES.length - 3] != 1){
throw new Error('SCALES must end with [1, MONTH_SCALE, DAY_SCALE]');
}
for (let i = 1; i < SCALES.length - 2; i++){
if (SCALES[i] <= 0){
throw new Error('SCALES must only have positive ints before MONTH_SCALE');
}
if (SCALES[i-1] <= SCALES[i]){
throw new Error('SCALES must hold decreasing values');
}
if (SCALES[i-1] % SCALES[i] > 0){
throw new Error('Each positive int in SCALES must divide the previous int');
}
}
}
export function stepDate( // If stepping by month or years, leaves day value unchanged
date: HistDate, scale: number, {forward=true, count=1, inplace=false} = {}): HistDate {
const newDate = inplace ? date : date.clone();
if (count < 0){
count = -count;
forward = !forward;
}
while (count > 0){
if (scale == DAY_SCALE){
if (forward && newDate.day < 28){
const chg = Math.min(28 - newDate.day, count);
newDate.day += chg;
count -= chg;
} else if (!forward && newDate.day > 1){
const chg = Math.min(newDate.day - 1, count);
newDate.day -= chg;
count -= chg;
} else {
let jdn = gregorianToJdn(newDate.year, newDate.month, newDate.day)
jdn += forward ? 1 : -1;
[newDate.year, newDate.month, newDate.day] = jdnToGregorian(jdn);
count -= 1;
}
} else if (scale == MONTH_SCALE){
if (forward){
if (newDate.month < 12){
const chg = Math.min(12 - newDate.month, count);
newDate.month += chg;
count -= chg;
} else {
newDate.year += 1;
if (newDate.year == 0){
newDate.year = 1;
}
newDate.month = 1;
count -= 1;
}
} else {
if (newDate.month > 1){
const chg = Math.min(newDate.month - 1, count);
newDate.month -= chg;
count -= chg;
} else {
newDate.year -= 1;
if (newDate.year == 0){
newDate.year = -1;
}
newDate.month = 12;
count -= 1;
}
}
} else {
let newYear;
if (forward){
newYear = newDate.year + count*scale;
if (newYear == 0){ // Account for there being no 0 CE
newYear = 1;
} else if (newDate.year == 1 && scale > 1){
newYear -= 1;
}
} else {
newYear = newDate.year - count*scale;
if (newYear == 0 && scale > 1){
newYear = 1;
} else if (newDate.year == 1){
newYear -= 1;
}
}
newDate.year = newYear;
count = 0;
}
}
return newDate;
}
export function inDateScale(date: HistDate, scale: number): boolean {
if (scale == DAY_SCALE){
return true;
} else if (scale == MONTH_SCALE){
return date.day == 1;
} else {
return (date.year == 1 || date.year % scale == 0) && date.month == 1 && date.day == 1;
}
}
export function getScaleRatio(scale: number, scale2: number, lowerVal=false){
// Returns number of units in 'scale' per unit in 'scale2' (provides upper/lower value for days-per-month/year)
const daysPerMonth = lowerVal ? 28 : 31;
if (scale == DAY_SCALE){
scale = 1 / 12 / daysPerMonth;
} else if (scale == MONTH_SCALE){
scale = 1 / 12;
}
if (scale2 == DAY_SCALE){
scale2 = 1 / 12 / daysPerMonth;
} else if (scale2 == MONTH_SCALE){
scale2 = 1 / 12;
}
return scale2 / scale;
}
export function getNumSubUnits(date: HistDate, scaleIdx: number){
// Returns number of sub-units for a unit starting at 'date' on scale for 'scaleIdx'
const scale = SCALES[scaleIdx]
if (scale == DAY_SCALE){
throw new Error('Cannot get sub-units for DAY_SCALE unit');
} else if (scale == MONTH_SCALE){
return getDaysInMonth(date.year, date.month); // Note: Intentionally not checking with MIN_CAL_YEAR
} else if (scale == 1){
return 12;
} else {
return scale / SCALES[scaleIdx + 1] - (date.year == 1 ? 1 : 0); // Account for lack of 0 CE
}
}
export function getUnitDiff(date: HistDate, date2: HistDate, scale: number): number {
if (scale == DAY_SCALE){
return date.getDayDiff(date2);
} else if (scale == MONTH_SCALE){
return date.getMonthDiff(date2);
} else {
return date.getYearDiff(date2) / scale;
}
}
// For sending timeline-bound data to BaseLine
export class TimelineState {
id: number;
startDate: HistDate;
endDate: HistDate;
startOffset: number | null;
endOffset: number | null;
scaleIdx: number | null;
constructor(id: number, startDate: HistDate, endDate: HistDate,
startOffset: number | null = null, endOffset: number | null = null, scaleIdx: number | null = null){
this.id = id;
this.startDate = startDate;
this.endDate = endDate;
this.startOffset = startOffset;
this.endOffset = endOffset;
this.scaleIdx = scaleIdx;
}
}
// For managing sets of non-overlapping date ranges
export type DateRange = [HistDate, HistDate];
export class DateRangeTree {
tree: RBTree<DateRange>;
constructor(){
this.tree = new RBTree((r1: DateRange, r2: DateRange) => r1[0].cmp(r2[0]));
}
add(range: DateRange){
const rangesToRemove: HistDate[] = []; // Holds starts of ranges to remove
const dummyDate = new YearDate();
// Find ranges to remove
const itr = this.tree.lowerBound([range[0], dummyDate]);
let prevRange = itr.prev();
if (prevRange != null){ // Check for start-overlapping range
if (prevRange[1].isEarlier(range[0])){
prevRange = null;
} else {
rangesToRemove.push(prevRange[0]);
}
}
let r = itr.next();
while (r != null && !range[1].isEarlier(r[1])){ // Check for included ranges
rangesToRemove.push(r[0]);
r = itr.next();
}
let nextRange = itr.data();
if (nextRange != null){ // Check for end-overlapping range
if (range[1].isEarlier(nextRange[0])){
nextRange = null;
} else {
rangesToRemove.push(nextRange[0])
}
}
// Remove included/overlapping ranges
for (const start of rangesToRemove){
this.tree.remove([start, dummyDate]);
}
// Add possibly-merged range
const startDate = prevRange != null ? prevRange[0] : range[0];
const endDate = nextRange != null ? nextRange[1] : range[1];
this.tree.insert([startDate, endDate]);
}
has(range: DateRange): boolean {
const itr = this.tree.lowerBound([range[0], new YearDate()]);
let r = itr.data();
if (r == null){
r = itr.prev();
if (r == null){
return false;
} else {
return !r[1].isEarlier(range[1]);
}
} else {
if (range[0].isEarlier(r[0])){
return false;
} else {
return !r[1].isEarlier(range[1]);
}
}
}
clear(){
this.tree.clear();
}
}
|