/globalwarmingpotentials

Primary LanguagePythonCreative Commons Zero v1.0 UniversalCC0-1.0

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

Running

make tag

and pushing with

git push origin main --tags

will create new releases on PyPI and NPM.