https://github.com/space-physics/GOESplot
Download and plot GOES satellite PNGs and high-resolution NetCDF4 by date/time
https://github.com/space-physics/GOESplot
goes13 goes16 noaa
Last synced: about 2 months ago
JSON representation
Download and plot GOES satellite PNGs and high-resolution NetCDF4 by date/time
- Host: GitHub
- URL: https://github.com/space-physics/GOESplot
- Owner: space-physics
- License: apache-2.0
- Archived: true
- Created: 2018-02-22T20:01:47.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2022-08-11T14:02:49.000Z (almost 3 years ago)
- Last Synced: 2024-05-23T08:20:21.945Z (about 1 year ago)
- Topics: goes13, goes16, noaa
- Language: Python
- Homepage:
- Size: 18.5 MB
- Stars: 14
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# GOES Plot

[](http://pepy.tech/project/goesplot)Quick Python script to download and plot GOES satellite preview and hi-resolution data by date/time.

```sh
python -m pip install -e .
```The scripts work with two types of data:
* [preview .jpg](https://www.ncdc.noaa.gov/gibbs/), 3 hour cadence
* [full fidelity NetCDF4](https://www.class.ncdc.noaa.gov/saa/products/welcome), 1 minute cadenceFull fidelity data:
Select data using GOES
[shopping cart](https://www.class.ncdc.noaa.gov/saa/products/shopping_cart_upd).
Search by date, geographic region.
Consider getting NetCDF format data unless you're familiar with the other options.
[Register](https://www.class.ncdc.noaa.gov/saa/products/user_profile)
for NOAA CLASS if needed.It may take up to 48 hours to get access to your order.
NOAA CLASS emails you when data is ready.
Each 5-10 minute set of multi-band data is several hundred megabytes at full resolution.Preview (3 hour cadence):
Get [GOES preview imagedata](https://www.ncdc.noaa.gov/gibbs/) with parallel download:
```sh
python get-goes-preview.py goesnum start stop outdir
```example: download IR from GOES-13 2018-01-01 to 2018-01-02 to `~/data/goes13`:
```sh
python get-goes-preview.py 13 IR 2018-01-01T00 2018-01-03T00 ~/data/goes13
```These are updated every 3 hours.
For science use, the
[full fidelity GOES data](https://www.class.ncdc.noaa.gov/saa/products/welcome)
are updated on minutely timescale.Plot GOES IR data georegistered via Cartopy:
```sh
python plot-goes.py ~/data/goes13
```Plot a specific file:
```sh
python plot-goes.py ~/data/goes13/2018-01-01T12:35:00.jpg
```