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 Global Carbon Budget offers a wealth of data on carbon dioxide emissions. That includes estimates of how CO₂ each nation has emitted into the Earth's atmosphere in each year since 1850. The latest edition of the report covers emissions from that year through 2024.
But that's not the whole story for atmospheric carbon dioxide emissions. When carbon dioxide is emitted into the air, it enters into the planet's carbon cycle, which extracts a portion of the emitted carbon dioxide from the air. These natural processes then play out slowly over decades, centuries, and millennia.
It's possible to estimate how much of a given year's emissions still remain in the Earth's air.
The following chart reveals both the total historic emissions of carbon dioxide and the portion of those emissions that is still present in the air from the modern day territories of the United Kingdom, India, the European Union, China, the United States, and the combined rest of the world for emissions produced in the years from 1850 through 2024.
Here are the percentages to indicate the portion of each territory's total historic emissions from 1850 through 2024 that remain in the Earth's atmosphere:
The following treemap chart visualizes each territory's share of the amount of excess carbon dioxide (defined as that coming from fossil fuel combustion in the years from 1850 through 2024) that is still in the air today:
In the three years from 2021 to 2024, China's share has risen from 17.3% to 18.5%, while the United States' share has declined from 22.3% to 21.4%. With those opposing trends, we project China's emissions that remain in the air will surpass those of the United States in 2031, the timing of which is unchanged from what we projected three years ago.
Friedlingstein et al. Global Carbon Budget 2025, Earth System Science Data, 13 May 2026. DOI: 10.5194/essd-18-3211-2026.
Political Calculations. How Long Does Carbon Dioxide Stay in the Atmosphere? [Online Article, Tool]. 19 July 2023.
Political Calculations. How Much Fossil Fuel CO2 Is in the Air? [Online Article]. 15 August 2023.
Political Calculations. Who Made the Excess Carbon Dioxide in Today's Air?. [Online Article]. 29 September 2023.
Image credit: Carbon Cycle by NASA on Wikimedia Commons Public Domain CC0 1.0 Universal Deed.
Labels: data visualization, 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.