Global carbon accountability signals (per-capita, intensity, historical responsibility)
Value-added carbon-accountability signals from free Our World in Data CO2 data: per-capita emissions, carbon intensity of GDP, global and cumulative emission shares with decarbonization trends, peaked-emissions flags, anomaly flags and cross-country ranks across ~200 countries. All computation is local pandas/numpy; no paid models or APIs.
Quality
Attribution
Our World in Data (https://ourworldindata.org); derived signals by Frontier Data Hub
Schema
| Column | Type | Description |
|---|---|---|
| date | string | Reference year of the observation (first day of the year), as published in the Our World in Data CO2 dataset. |
| country | string | |
| country_code | string | |
| series_id | string | Derived series identifier: CO2_PER_CAPITA (territorial CO2 per person), CO2_PER_GDP (CO2 intensity of GDP), SHARE_GLOBAL_CO2 (share of global annual CO2), or SHARE_CUMULATIVE_CO2 (share of cumulative CO2 since 1750). |
| series_label | string | Human-readable series label from the Our World in Data CO2 dataset documentation, naming the emissions indicator and its unit. |
| value | float | Indicator value as published by Our World in Data: territorial CO2 per capita in tonnes; CO2 intensity in kg per 2017 international-$ of GDP; global and cumulative emission shares in percent. |
| trend_10y | float | |
| peaked_flag | integer | |
| anomaly_flag | integer | |
| rank | float |
Sample rows
| date | country | country_code | series_id | series_label | value | trend_10y | peaked_flag | anomaly_flag | rank |
|---|---|---|---|---|---|---|---|---|---|
| 1750-01-01 | Australia | AUS | CO2_PER_CAPITA | Territorial CO2 emissions per capita (tonnes per person, Our World in Data) | 0 | — | 0 | 0 | 2 |
| 1750-01-01 | United Kingdom | GBR | CO2_PER_CAPITA | Territorial CO2 emissions per capita (tonnes per person, Our World in Data) | 1.002 | — | 0 | 0 | 1 |
| 1750-01-01 | Norway | NOR | CO2_PER_CAPITA | Territorial CO2 emissions per capita (tonnes per person, Our World in Data) | 0 | — | 0 | 0 | 2 |
| 1750-01-01 | New Zealand | NZL | CO2_PER_CAPITA | Territorial CO2 emissions per capita (tonnes per person, Our World in Data) | 0 | — | 0 | 0 | 2 |
| 1750-01-01 | Taiwan | TWN | CO2_PER_CAPITA | Territorial CO2 emissions per capita (tonnes per person, Our World in Data) | 0 | — | 0 | 0 | 2 |
Download sample data
Download the full sample snapshot for this dataset (sample rows, not the complete dataset).
Use with an LLM
Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).
cURL
curl "https://datazimuts.com/v1/datasets/carbon_accountability_signals/global_carbon_accountability_signals" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/carbon_accountability_signals/global_carbon_accountability_signals").json()
print(ds["title"], ds["rows"], "rows")
# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
print(row)API endpoint: https://datazimuts.com/v1/datasets/carbon_accountability_signals/global_carbon_accountability_signals
Tip: fetch /llms.txt for the full machine-readable catalog.