https://github.com/bashrc2/ccg2
Plot carbon cycle gasses
https://github.com/bashrc2/ccg2
climatology gnuplot
Last synced: 9 months ago
JSON representation
Plot carbon cycle gasses
- Host: GitHub
- URL: https://github.com/bashrc2/ccg2
- Owner: bashrc2
- License: gpl-3.0
- Created: 2021-12-13T17:32:08.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-15T14:42:32.000Z (about 3 years ago)
- Last Synced: 2025-04-12T23:45:46.775Z (9 months ago)
- Topics: climatology, gnuplot
- Language: Python
- Homepage:
- Size: 7.82 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Introduction
============
ccg is a program which enables you to plot ERSL atmospheric gas data from the US National Oceanic and Atmospheric Administration (NOAA) web site.
For Carbon Dioxide:
``` bash
cd data
rm -rf surface_co2
wget https://gml.noaa.gov/aftp/data/trace_gases/co2/flask/surface/co2_surface-flask_1_ccgg_ASCIItext.tar.gz
tar -xzvf co2_surface-flask_1_ccgg_ASCIItext.tar.gz
mv co2_surface-flask_1_ccgg_ASCIItext surface_co2
cd ..
python3 ccg2.py --title "Atmospheric CO2"
ls *.jpg *.kml
```
For Methane:
``` bash
cd data
rm -rf surface_ch4
wget https://gml.noaa.gov/aftp/data/trace_gases/ch4/flask/surface/ch4_surface-flask_1_ccgg_ASCIItext.tar.gz
tar -xzvf ch4_surface-flask_1_ccgg_ASCIItext.tar.gz
mv ch4_surface-flask_1_ccgg_ASCIItext surface_ch4
cd ..
python3 ccg2.py --title "Atmospheric CH4" --dir data/surface_ch4
ls *.jpg *.kml
```