Skip to content

Latest commit

 

History

History
104 lines (73 loc) · 3.75 KB

README.md

File metadata and controls

104 lines (73 loc) · 3.75 KB

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.