Skip to content

Background & Explanation

Alex Landherr edited this page Oct 3, 2021 · 1 revision

Background and Explanation

This is a program that downloads weather satellite images from the National Oceanic and Atmospheric Administration (NOAA). They have a website for the GOES-16 and GOES-17 satellites in geostationary orbit. On the particular sites listed below the full disk and so called CONUS images are uploaded every 10 minutes (600 seconds) but with a 20 minute (1200 second) lag behind "real time"; so if an image was taken at 12:00:00 UTC it only appears on the website at 12:20:00 UTC.

What further simplified the project was that the image URLs are highly predictable, they can look like this (this link is long dead but remains to show the structure of the URL): https://cdn.star.nesdis.noaa.gov/GOES16/ABI/FD/GEOCOLOR/20211861830_GOES16-ABI-FD-GEOCOLOR-10848x10848.jpg

Here 2021 is the year, 186 is the day number (described here for Python programmers: https://docs.python.org/3/library/datetime.html#date-objects) and 1830 is the time of day in UTC.

Using all this information I wrote a series of programs that downloaded the GOES-16 and GOES-17 images retrospecitvely and prospectively; though for some reason no images older than three days (259200 seconds) can be downloaded from these particular servers. Over time I fixed bugs and added new features like generating dummy images when I got an HTTP 400 or 500 series error. This program could probably be set to run for a long time with enough storage space. There's also a bunch of logging features and simple statistics for the downloaded data and program operation.

My code only downloads the GeoColor images in all resolutions except the "GeoTIFF" and "Animation Loop" options. The choice of GeoColor was made as I originally wrote this code to make full disk time lapse sequences of the Earth.

GOES-16 full disk images: https://www.star.nesdis.noaa.gov/GOES/fulldisk.php?sat=G16

GOES-17 full disk images: https://www.star.nesdis.noaa.gov/GOES/fulldisk.php?sat=G17

Example Image

https://user-images.githubusercontent.com/86981389/134773806-9a391056-a5e4-433d-8da5-54dbf7aa867d.jpg

Clone this wiki locally