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
China is, by far and away, the world's largest emitter of carbon dioxide into the Earth's atmosphere.
That factoid was recently driven home by the Rhodium Group's latest report on the topic, updating their annual data through the 2019 calendar year. The following chart indicates the share of net CO₂ emissions by the world's top emitting countries or regions:
The Rhodium group estimates that China's net carbon emissions exceeded the output of the 34 developed nations that make up the Organisation for Economic Cooperation and Development (OECD).
The chart above represents something of a snapshot in time of the pre-coronavirus pandemic world of 2020, which saw CO₂ emissions fall in many developed countries around the world.
But not in China, according to the Rhodium Group's preliminary 2020 estimate:
Based on preliminary energy and economic data, we estimate that China’s GHG emissions increased by 1.7% in 2020. While this is well below the 3.3% emissions growth that China averaged over the past decade, it is a worrying sign that the world’s largest GHG emitter’s focus on a fossil-fueled industrial recovery is at odds with its long-term goal of reaching net-zero emissions by 2060.
By contrast, the Rhodium Group's preliminary estimates indicate a 10.3% decline in net U.S. greenhouse gas (GHG) emissions in 2020, putting the U.S. below its 1990 level of emissions. That figure is consistent with a new year-over-year estimated reduction of 10.4% for just U.S. fossil fuel generated CO₂ emissions during 2020.
Pointing to the link between greenhouse gas emissions and economic growth, China's economy is estimated to have grown by 2.1% while the U.S. economy shrank by 3.5% in real terms from 2019 to 2020.
Labels: 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.