Skip to content

kaiyuan-cheng/goes2go

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Brian Blaylock
🌐 Webpage
🔩 PyPI

🏃🏻‍♂️💨 🌎 🛰 GOES-2-go

DOI

Download and read files from the NOAA GOES archive on AWS.http://home.chpc.utah.edu/~u0553130/Brian_Blaylock/hrrr_FAQ.html

Read doc strings for functions in goes2go/ folder for full usage description.

Some Useful Links


What if I don't like the goes2go package?

As an alternative you can use rclone to download GOES files from AWS. I quite like rclone. Here is a short rclone tutorial.

Download Data

Download GOES 16 ABI (this example downloads the multichannel fixed grid product for CONUS) and read it with xarray.

from goes2go.data import goes_latest, goes_nearesttime

# Get latest data
G1 = goes_latest(satellite='G16', product='ABI')

# Get data for a specific time
G2 = goes_nearesttime(datetime(2020,10,1), satellite='G16', product='GLM')

RGB Recipies

For a GOES ABI multichannel xarray.Dataset, return an RGB array for an RGB product. See DEMO for more examples of RGB products.

Field of View

See notebooks for GLM and ABI field of view.

GOES-West is centered over -137 W and GOES-East is centered over -75 W. When GOES was being tested, it was in a "central" position, outlined in the dashed black line. Below is the ABI field of view for the full disk: field of view image

The GLM field of view is slightly smaller and limited by a bounding box. Below is the GLM field of view: field of view image

Packages

No packages published

Languages

  • Jupyter Notebook 99.8%
  • Python 0.2%