Climate Vital Signs: The 2026 Snapshot
The full climate story is thousands of datasets, but four numbers carry most of the signal: how much carbon dioxide and methane are in the air, how much the planet has warmed, and how much summer sea ice is left in the Arctic. Each comes from a primary agency — NOAA, the UK Met Office, NSIDC — and each is updated on its own cadence. Here they are in one dated card, with the long series behind each so the trend isn't a single scary number without context.
· 6 min read · all figures from NOAA, Met Office & NSIDC
The Four Numbers
A note on what these are not: this is a small, deliberately shallow set — four headline indicators, not a model or a forecast. Global sea level (another vital sign) is omitted here because the reconstruction we mirror runs only through 2020; the four above are all current to 2025 or 2026. For anything beyond a snapshot, go to the primary sources linked below.
Reading Each Sign
CO₂ is the steadiest line of the four. The Mauna Loa record is famous for its sawtooth — up in northern winter, down in northern summer as plants pull carbon in — but under the wiggle is a near-monotonic climb from 315 ppm in 1958 to 429 ppm now. Unlike temperature, it barely has noisy years; the annual increase itself has grown, from under 1 ppm/year in the 1960s to around 2.5 ppm/year lately.
Temperature is the noisiest. The anomaly bounces year to year with El Niño and volcanic aerosols, which is exactly why a single year's figure is a poor headline and the trend is the story: from essentially zero in the 19th century to +1.39 °C now, with the hottest years all falling in the last decade. The dip from the 2024 peak (+1.53) to 2026 is the kind of short-term wobble the record is full of — not a reversal of the trend.
Methane and sea ice are the two moving fastest in relative terms. Methane growth stalled around 2000 and then resumed, sharply, after 2007. Arctic September sea ice — the summer minimum, when the pack is smallest — has lost roughly a third of its 1979 extent, with the record low still 2012's 3.57 million km²; recent years sit well below the early record but bounce year to year with weather.
Sources & Baselines
| Indicator | Latest | Baseline | Change | Source |
|---|---|---|---|---|
| Atmospheric CO₂ | 429.1 ppm | 313.33 (1958) | +35.9% | NOAA GML |
| Global temperature | +1.39 °C | -0.06 (1850) | +1.45 °C | HadCRUT5 |
| Atmospheric methane | 1,938 ppb | 1639.53 (1983) | +19.2% | NOAA GML |
| Arctic sea-ice min. | 4.75 M km² | 7.05 (1979) | −32.7% | NSIDC |
CO₂ & methane: NOAA Global Monitoring Laboratory. Temperature: HadCRUT5, anomaly vs 1961–1990. Sea ice: NSIDC Sea Ice Index, September minimum. Pre-industrial CO₂ (~280 ppm) is the widely cited IPCC value.
Reproduce This
The card is built from four JSON feeds we keep in sync with the source agencies. Each carries its own latest, through and source fields, so a snapshot is a one-liner per metric:
const base = 'https://lkforge.com/tools/climate/data/';
for (const m of ['co2', 'global-temperature', 'methane', 'arctic-sea-ice']) {
const d = await (await fetch(base + m + '.json')).json();
console.log(m, '→', d.latest.v, d.unit, '(through ' + d.through + ')',
'| ' + d.trend.pct + '% vs ' + d.first.t, '| source:', d.source);
}
// co2 → 429.12 ppm (through August 2026) | +35.9% vs 1958 | source: NOAA GML
// global-temperature → 1.39 °C anomaly (through 2026) | ... | source: HadCRUT5
// methane → 1937.59 ppb (through May 2026) | +19.2% vs 1983 | source: NOAA GML
// arctic-sea-ice → 4.75 million km² (through 2025) | -32.7% vs 1979 | source: NSIDC Related reading: reading tonight's space weather instead of the climate record, in How Far South Did the Aurora Reach This Year?; and what live public-data feeds are worth opening in a browser tab, in Live Space Data in Your Browser.
Explore the Live Dashboard
Each of these series, charted and always current, straight from NOAA, the Met Office and NSIDC — no sign-up.