SUVI calendar heatmap
Table of Contents
Introduction
The Solar Ultraviolet Imager (SUVI) aboard NOAA's GOES takes pictures of the Sun in 6 ultraviolet passbands. They're quite stunning and are used for space weather monitoring and prediction. (I was lucky enough to get to work with them in my previous job at NOAA.) To make them more useful, the imager takes long and short length exposures and then composites them together as a Level 2 composite image product. You can see one below.
However, the composite images are sometimes not created, meaning no data is available for the end-user (ME!). I wanted to understand what periods the data was available for so I could use it for another project. A while back I wrote a piece of code called the goes-solar-retriver that allows a user to search for SUVI images and then download them directly from NOAA. To answer my question, I queried the website for all the data using the code shown at the end. The process is slower than I'd like because there's no multi-threading in my retriever software. I feel like it's also slow because of other undetermined reasons too.
From that catalog of all the images, I then used the Python package calmap to create calendar heat maps of the frequencies.
Results
Deep green means 360 images were created on that day, the expected amount. Anything yellower or whiter than that has fewer images. Grey means no data was retrieved because it was outside the search window. All of these results are for GOES-16 composite images.
94 angstrom
131 angstrom
171 angstrom
195 angstrom
284 angstrom
304 angstrom
Potential improvements
As mentioned before, the code is slow. It takes about 15 images to create a single plot. This should be improved.
The plots are good for getting an impression of when data is available, but it would be much better if they were interactive so that you can hover over and determine exactly how many images are available on a given day. It could even directly take you to a preview of that day's data. I could even have it allow for a more granular view showing when during that given day the data is available. Switching this plot to interactive would greatly enhance it.
Further, just because an image is available doesn't mean it's useable. There are
times of eclipsed data or potentially where the composite wasn't created correctly,
e.g. missing blocks or improper combination of short and long exposures.
This project is only a start at understanding the data availability. A more
thorough quality check would need to be devised, but that requires actually
downloading the data.
Code
Below is the code used in this analysis:
=
=
=
=
=
=
= ..
# only count files that are large enough, i.e. greater than 1 megabyte
=
= 1
= 0
# aggregate the files into a daily count, i.e. sum how many observations there are per day
=
=
# make a plot!