to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
How much has Earth's GDP been whacked by the coronavirus pandemic?
In its World Economic Outlook projection for October 2019, the International Monetary Fund estimated World GDP would total $86,599 billion U.S. dollars in 2019. With an estimated world population of 7.605 billion people for 2019.
In an intriguing 2016 paper, Jenny Cederborg and Sara Snöbohm researched whether there is a relationship between economic growth and carbon dioxide emissions and identified a positive correlation between CO₂ emissions and GDP per capita. They found "CO₂ emissions increase by approximately 0.0002 [metric] tons (0.2 kg) per capita when GDP per capita increase by 1 dollar, holding all other variables constant".
Let's assume that relationship applies to today's circumstances with the coronavirus, which has prompted a reduction in carbon dioxide emissions among the world's top emitting countries. Since December 2019, which we can call Month 0 for the economic impact related to the coronavirus pandemic that originated in China, the trailing twelve month average of atmospheric carbon dioxide has declined by 0.12 parts per million through March 2020, the equivalent to a reduction in emissions of 937.2 million metric tons, assuming no other changes.
We've next adapted a tool we previously built to do the ppm-to-metric-ton math to also estimate the corresponding change in GDP per capita that would coincide with such a change. If you're accessing this article on a site that republishes our RSS news feed, please click through to our site to access a working version of the modified tool.
Using the default numbers in our tool, we find a reduction in World GDP through March 2020 of $3,988 billion. Which is to say, it appears to have a comparatively small impact at all through this point in time for something on the scale of the world economy.
Then again, when using atmospheric carbon dioxide as a measurement tool, while we can get a sense of the direction the economy is taking relatively quickly, it can take a really long time for the full impact of an economic event to be measured at the remote Mauna Loa Observatory. Using the examples of Indonesian wildfires from 1997 and from 2015, it took nearly a year for the full effect of the emissions from those temporary events to be fully reflected in the observatory's atmospheric CO₂ concentration measurements, which means it is likely way too early to assess the impact of the coronavirus economic shutdowns taking place around the world, which are anywhere from a week to just a couple of months old depending upon when they were enacted at this point.
In any case, we now have a tool to generate the estimate for lost global GDP from the coronavirus pandemic. We only need to wait for the measurements. Assuming that this particular approach to answering the question is valid, which time will also tell.
Update 7 April 2020: We've corrected an error in the tool's output, where we've added boldface text to indicate where the correction has affected the analysis above.
National Oceanographic and Atmospheric Administration. Earth System Research Laboratory. Mauna Loa Observatory CO2 Data. [File Transfer Protocol Text File]. Updated 6 April 2020. Accessed 6 April 2020.
Cederborg, Jenny and Snöbohm, Sara. Is there a relationship between economic growth and carbon dioxide emissions? Semantic Scholar.
[PDF Document]. 2016.
Image credit: Victor He
Labels: coronavirus, environment, gdp, tool
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.