Skip to main content

Posts

Showing posts with the label goes-17

SATELLITE DATA DOWNLOAD

Broken links are annoying. In order to better keep track of the constantly changing download URLs of the various satellite data referenced in this blog, this page has been created to host the most recent known working server locations. [UPDATE: May 29, 2026] Added DSCOVR EPIC data download information. [UPDATE: June 11, 2026] Added Chollian-2A data download information.   NOAA GOES-R SERIES For full-disk images in pseudo-true color, these are the two most useful products: Product: ABI-L1b-RadF Format: Individual bands; 10848 x 10848 resolution or higher. Product: ABI-L2-MCMIPF Format: Combined bands; 5424 x 5424 resolution. GOES-16 (EAST) ABI Download — 2017-2025: https://noaa-goes16.s3.amazonaws.com/index.html#ABI-L1b-RadF/ https://noaa-goes16.s3.amazonaws.com/index.html#ABI-L2-MCMIPF/ GOES-17 (WEST) ABI Download — 2018-2023: https://noaa-goes17.s3.amazonaws.com/index.html#ABI-L1b-RadF/ https://noaa-goes17.s3.amazonaws.com/index.html#ABI-L2-MCMIPF/ GO...

PYTHON SCRIPT FOR GOES SATELLITES

Here is my current Python script for GOES-16 and GOES-17 satellites. If you followed the GOES Satellite Data Download tutorial and saved the file as suggested you need only change the path variable in the script. For example, if your path looks like this: E:/goes-16-data/full-disk/multi-band/2020/0415/1430/ The path variable will be this: path = 'E:/goes-16-data/full-disk/multi-band/' Do not include the YYYY/MMDD/hhmm/ part of your path; the script assumes you used this directory structure and will handle it automatically. Also don't forget the quotes and forward slash at the end!

GENERATING A GREEN BAND FOR GOES-16

GOES-16 and GOES-17 have no green band so one has to be created from the blue, red, and near-infrared channels. But no amount of simple blending of those channels will produce a truly accurate synthetic green band so additional processing—e.g. a look up table (LUT)—is usually necessary to further compensate. For demonstration purposes I'll be using mostly Himawari-8 imagery in this post. Himawari and GOES share the same imager with reasonably similar blue, red, and near-infrared bands. The big difference, of course, is Himawari includes a visible wavelength green filter (though at a wavelength that is not ideal for true color). GOES prioritizes a unique near-infrared filter in place of a green one. By combining blue, red, and near-infrared channels Himawari will produce approximately what GOES is capable of. This can then be compared to Himawari imagery using its RGB filters (with a little near-infrared added to boost the vegetation signal). Here is a commonly cited GOES synt...

GOES SATELLITE DATA DOWNLOAD

Data from GOES-16 and GOES-17 is free and easy to obtain, especially since Brian Blaylock created an excellent interface to download the multitude of available products from these satellites. [Update: May 28, 2026] Use the satellite data download page for working links. DOWNLOAD GOES DATA Start by going to the link here: http://home.chpc.utah.edu/~u0553130/Brian_Blaylock/cgi-bin/goes16_download.cgi For this tutorial we are primarily interested in full disk GOES-16 data. We will be using imagery from the same day as in the Himawari 8-tutorial but this time at 14:30 UTC. As with Himawari-8, we will download 2000-meter resolution data. The difference is all 16 available bands are contained in a single file rather than four individual files. From the Domain drop-down menu select Full Disk . From the Product menu select ABI L2 Cloud and Moisture Imagery (Multi-Band Format) . From the Date menu select 04/15/2020 . From the Hour (UTC) menu select 14 and click the Submi...