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 pace at which carbon dioxide accumulates in the Earth's atmosphere has been falling since peaking in January 2025. New data on the changing concentration of CO₂ in the air however suggests that long trend may be ending.
The decline since the January 2025 peak has largely coincided with the negative impact of the U.S.-China tariff war, which has contributed to the slowing of China's economy in the period since. Because China is, by far and away, the world's largest source of carbon dioxide emissions, changes in those emissions can provide a window in the relative health of its economy.
In August 2026, data reported by the remote Mauna Loa Observatory indicates the downward trend in the accumulation rate of CO₂ in the Earth's air has begun to slow. This new data points to a positive change in momentum for China's economy that follows an increase in trade between the U.S. and China, which we've observed in the form of an increase in goods exported from China to the U.S. since April 2026. The combination of this increase in trade with the positive change in momentum for CO₂ emissions indicates China's economic output is picking up.
The following chart shows the downward trend in the pace of carbon dioxide accumulation in the atmosphere is decelerating.
The deceleration in the downward trend is taking place near the levels where reversals in downward economic momentum have been observed during the last twenty years.
On a final note, our featured secondary (inset) chart is taken from the United Nations Environmental Programme's 2025 Emissions Gap Report. We're featuring it because the upper chart shows China's very much larger than every other nation's emissions of greenhouse gases, which is predominantly made of up carbon dioxide emissions.
But there's a surprise in the lower chart of the figure: the U.S. no longer holds the top rank for per capita greenhouse gas (GHG) emissions! The UN's data suggests the Russian Federation's per capita GHG emissions have overtaken the U.S. for the top spot.
National Oceanographic and Atmospheric Administration. Earth System Research Laboratory. Mauna Loa Observatory CO2 Data. [Online Data]. Updated 5 September 2026.
United Nations Environment Programme (2025). Emissions Gap Report 2025: Off target – Continued collective inaction puts global temperature goal at risk [Olhoff, A., chief editor; Lamb, W.; Kuramochi, T.; Rogelj, J.; den Elzen, M.; Christensen, J.; Fransen, T.; Pathak, M.; Tong, D. (eds)]. Nairobi. [PDF Document]. DOI: 10.59117/20.500.11822/48854.
Labels: economics, 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.