Compare commits
No commits in common. "05256599f3ff88d45432288d3c505a2a741f6dc0" and "5f93c5997ef8782d7067b266c67580d91535cbda" have entirely different histories.
05256599f3
...
5f93c5997e
@ -60,7 +60,7 @@ const lastUpdate = new Date(lastGlobalDeathsUpdate > lastUSDeathsUpdate ?
|
||||
);
|
||||
|
||||
const zeroPad = value => value < 10 ? `0${value}` : value.toString();
|
||||
const toSafeName = x => x.replace(/[^A-Za-z0-9]/g, '-').toLowerCase();
|
||||
const toSafeName = x => x.replace(/[^A-Za-z]/g, '-').toLowerCase();
|
||||
|
||||
const processRecords = async () => {
|
||||
const globalStart = Date.now();
|
||||
@ -178,8 +178,6 @@ const processRecords = async () => {
|
||||
countryPopulationMap['Diamond Princess'] = statePopulationMap['Diamond Princess'] = 3711;
|
||||
countryPopulationMap['MS Zaandam'] = 1829;
|
||||
countryPopulationMap['Kosovo'] = 1810463;
|
||||
countryPopulationMap['Antarctica'] = 3250; // https://worldpopulationreview.com/continents/antarctica-population
|
||||
countryPopulationMap['Winter Olympics 2022'] = 2900;
|
||||
statePopulationMap['Grand Princess'] = 3533;
|
||||
if (statePopulationMap['Puerto Rico Commonwealth']) {
|
||||
statePopulationMap['Puerto Rico'] = statePopulationMap['Puerto Rico Commonwealth'];
|
||||
|
Loading…
x
Reference in New Issue
Block a user