Skip to content

Global Warming Potentials as assessed by the IPCC in CSV format, and as Python and Node modules

License

Notifications You must be signed in to change notification settings

openclimatedata/globalwarmingpotentials

Repository files navigation

Global Warming Potentials

This work is released under a Creative Commons CC0 Public Domain Dedication. Read the LICENSE.

PyPI Conda-Forge npm

Global warming potentials of greenhouse gases.

GWP metrics included in this repository

100-year-GWP from IPCC reports

20-year-GWP from IPCC reports

500-year-GWP from IPCC reports

100-year-GTP from IPCC reports

100-year-GWP including climate carbon cycle feedbacks

CSV file

CSV file: globalwarmingpotentials.csv

Python

pip install globalwarmingpotentials

Example usage:

import globalwarmingpotentials as gwp

print(gwp.data["AR5GWP100"]["CH4"])  # prints '28'

df = gwp.as_frame()  # Returns a Pandas DataFrame

Node

npm install globalwarmingpotentials

Releasing

After running

make

to update the Python and JS libraries

running

make tag

and pushing with

git push origin main --tags

a new releases on PyPI and NPM will be published.