EUI Artifact Analysis
Introduction
The Extreme Ultraviolet Imager (EUI) aboard the ESA/NASA Solar Orbiter mission takes pictures of the Sun in ultraviolet wavelengths.
Above you can see an annotated version of one of these images.
Specifically this is the image with filename solo_L1_eui-fsi174-image_20210224T013042238_V02.fits
.
Notice the artifacts where above and below the solar disk there are darkened stripes.
It's my understanding from a colleague that the cause of these stripes is unknown and they still need to be corrected in the data.
We noticed that where the Sun is brighter the stripe appears to be darker.
The analysis below confirms this.
Analysis
To measure this phenomenon, I created a mask of where the Sun is. This is denoted by the white circle in the above image. Anything inside the white circle is considered on-disk and anything outside is off-disk. Then, I went column by column and computed the mean value on-disk and off-disk for that column. You end up with the plot below:
It confirms that the off-disk region is dimmer in columns where the on-disk region is brighter. Maybe this same kind of analysis can be used to correct this artifact?
Code
Below is the code used in this analysis:
= .
= .
# from https://stackoverflow.com/questions/44865023/how-can-i-create-a-circular-mask-for-a-numpy-array
# use the middle of the image
=
# use the smallest distance between center and image walls
=
=
, =
= <=
return
# Show the example image with annotations
=
, =
# Create the masks used for analysis
=
=
=
=
=
# Make the measurements
= ,
,
=
=
# Plot the analysis
=
,