Add covid tracking script

This commit is contained in:
Evgeny
2021-07-29 20:07:38 +03:00
parent 3228d57bf1
commit 705d651677

View File

@@ -9,7 +9,13 @@ function onNetworkResult(result)
local totalDeaths = json:getValue(result, "object object:Global int:TotalDeaths")
ui:showLines({
"Disease: total = "..total.." new = "..new,
"Deaths: total = "..totalDeaths.." new = "..newDeaths
"Disease: total = "..comma_value(total).." new = "..comma_value(new),
"Deaths: total = "..comma_value(totalDeaths).." new = "..comma_value(newDeaths)
})
end
function comma_value(n) -- credit http://richard.warburton.it
local left,num,right = string.match(n,'^([^%d]*%d)(%d*)(.-)$')
return left..(num:reverse():gsub('(%d%d%d)','%1,'):reverse())..right
end