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
The impact of the coronavirus pandemic that began in China continues to take a toll on the world's economy.
We can estimate that impact using the trailing twelve month average of the year over year change in the atmospheric concentration of carbon dioxide measured at the remote Mauna Loa Observatory. Here, we find that the rate at which CO₂ is increasing in the Earth's air has fallen from a trailing year average of 2.91 parts per million in December 2019 to a preliminary estimate of 2.61 parts per million in July 2020.
That change can be seen in the latest update to a chart showing the history of this measure and the timing of major economic recessions in the world since January 1960.
That decline of just 0.3 parts per million of carbon dioxide in the atmosphere translates to nearly $10 trillion reduction in the world's Gross Domestic Product. The default values in the following tool confirm the results of the math we have previously confirmed provides estimates of lost GDP in the right ballpark. 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 tool.
With an estimated loss of $9.97 trillion worth of global GDP, the reduction in the pace at which the level of carbon dioxide is changing within the atmosphere represents approximately a 7.0% decline from the International Monetary Fund's purchasing power parity estimate of $142.0 trillion for 2019.
In early June 2020, the World Bank estimated the global coronavirus pandemic would shrink the world's economy by 5.2%, which works out to be a reduction of roughly $7.4 trillion worth of international GDP.
Both these figures are of a similar order of magnitude, so our estimate is still very consistent with those of established sources. And for what it's worth, the World Bank's estimate would be based on data through May 2020, while ours is based on data through July 2020. If you're looking for a single value that captures the most current, best single estimate available today, our estimated $10 trillion loss in world GDP since the SARS-CoV-2 coronavirus made its debut in Wuhan, China is a good number to reference.
National Oceanographic and Atmospheric Administration. Earth System Research Laboratory. Mauna Loa Observatory CO2 Data. [File Transfer Protocol Text File]. Updated 5 August 2020. Accessed 5 August 2020.
Cederborg, Jenny and Snöbohm, Sara. Is there a relationship between economic growth and carbon dioxide emissions? Semantic Scholar. [PDF Document]. 2016.
Labels: coronavirus, environment, gdp, recession, 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.