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
In April 2020, the trailing twelve month average of the year-over-year change in the atmospheric concentration of carbon dioxide measured at the Mauna Loa Observatory ticked very slightly down from last month. The following chart shows the historical trend for this measurement from January 1960 through April 2020:
In looking at the data presented on this chart the colored vertical bands correspond with the major historical and economic events listed at the bottom of the chart. Compared to the previous version we last presented in March 2020, we've provided some additional annotations to provide some context for some of the more recent events that affected atmospheric carbon dioxide levels, including the 1997 and 2015 natural El Niño events that coincided with exceptionally large wildfires in Indonesia, which greatly increased the rate at which CO₂ was injected into the Earth's air during these periods.
We've also highlighted 2019 for China's economic stimulus efforts, where China's political leaders accelerated the construction of coal-fired power plants within the country as they attempted to offset the negative economic impact of the U.S.-China trade war, with the effect of raising both the floor and the ceiling for human-generated carbon dioxide emissions. China is, by a very wide margin, the largest national contributor to global CO₂ emissions, with an impact that extends beyond its borders if you factor in its funding and construction of coal-fired power plants in nations it has targeted through its "Belt and Road" trade initiative.
We've also pointed to the period since December 2019 as the global coronavirus recession, although that event isn't the only contributor to the falling rate of growth of atmospheric CO₂ during this time. The end of large wildfires in Australia would also have an impact by removing this source from adding to CO₂ levels in the Earth's air, though scientists don't expect to start seeing that effect in the observations at Mauna Loa until the latter half of 2020.
The following chart shows the year-over-year change in atmospheric carbon dioxide levels the trailing year average shown in the previous chart is based upon.
Since ending its own economic lockdown in February 2020, China's carbon dioxide emissions have been increasing, which will offset the reductions in CO₂ emissions now occurring in North America and in Europe resulting from the economic lockdowns imposed by governments across much of these regions.
National Oceanographic and Atmospheric Administration. Earth System Research Laboratory. Mauna Loa Observatory CO2 Data. [File Transfer Protocol Text File]. Updated 5 May 2020. Accessed 6 May 2020.
Labels: coronavirus, environment
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.