Compare commits
6 Commits
2f950e2191
...
master
Author | SHA1 | Date | |
---|---|---|---|
bf0f6c8bc1 | |||
05256599f3 | |||
cba73cd4e7 | |||
5f93c5997e | |||
26c2a83043 | |||
f5a2863812 |
@ -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-z]/g, '-').toLowerCase();
|
||||
const toSafeName = x => x.replace(/[^A-Za-z0-9]/g, '-').toLowerCase();
|
||||
|
||||
const processRecords = async () => {
|
||||
const globalStart = Date.now();
|
||||
@ -153,6 +153,7 @@ const processRecords = async () => {
|
||||
'Czech Republic': 'Czechia',
|
||||
'Vatican City': 'Holy See',
|
||||
'South Korea': 'Korea, South',
|
||||
'North Korea': 'Korea, North',
|
||||
'Taiwan': 'Taiwan*',
|
||||
'East Timor': 'Timor-Leste',
|
||||
'Palestine': 'West Bank and Gaza',
|
||||
@ -172,9 +173,14 @@ const processRecords = async () => {
|
||||
return map;
|
||||
}, {});
|
||||
|
||||
// setting olympics population based on data from
|
||||
// https://www.nbcsports.com/northwest/tokyo-olympics/tokyo-olympics-numbers-participating-country-stats-and-facts
|
||||
countryPopulationMap['Summer Olympics 2020'] = statePopulationMap['Summer Olympics 2020'] = 11091;
|
||||
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'];
|
||||
|
10
update.sh
10
update.sh
@ -6,10 +6,12 @@ dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
|
||||
cd "${dir}"
|
||||
|
||||
node=/home/tmont/.nvm/versions/node/v12.16.2/bin/node
|
||||
PATH="$PATH:$(dirname "${node}")"
|
||||
|
||||
if ! which node > /dev/null; then
|
||||
#. /home/tmont/.nvm/nvm.sh
|
||||
nvm use
|
||||
yarn install --production --non-interactive --pure-lockfile
|
||||
echo "node not available"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ! -d "./COVID-19" ]]; then
|
||||
@ -22,6 +24,6 @@ rm -rf ./public/
|
||||
|
||||
./generate.js
|
||||
|
||||
rsync -vaz -e "ssh -i /home/tmont/.ssh/nuc-main" ./public/ tmont@tmont.com:/var/www/sites/covid19.tmont.com/live/
|
||||
rsync -vaz ./public/ covid19:/var/www/sites/covid19.tmont.com/live/
|
||||
|
||||
echo
|
||||
|
Loading…
x
Reference in New Issue
Block a user