-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add SDO images and retrieval script #4
Open
edmundhenley
wants to merge
5
commits into
main
Choose a base branch
from
3-spacewx-add-sdo-imagery-for-sonification
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add example solar data from the AIA instrument on NASA's Solar Dynamics Observatory (SDO) mission at low resolution (512x512). General mission information: * https://en.wikipedia.org/wiki/Solar_Dynamics_Observatory * https://sdo.gsfc.nasa.gov/ Wavelength / spectral band information, and linking this back spatially to the coronal region (height) and temperature: * https://sdo.gsfc.nasa.gov/data/channels.php * https://en.m.wikipedia.org/wiki/Solar_transition_region * https://history.nasa.gov/SP-402/p2.htm Specifics on images added: * `wavelength_sequence`: a very short (~15 s) sequence of images across various wavelengths (does not include magnetogram data from the HMI instrument) * retrieved manually via https://sdo.gsfc.nasa.gov/assets/img/browse/ * `eruption_time_sequence`: a medium duration (~8 H) sequence of images (wavelength: 171 Angstroms: quiet corona, upper transition region). Show a small coronal mass ejection & some subsequent brightening nearby as the surrounding corona rearranges itself into a lower energy configuration, releasing energy in the form of minor flaring * retrieved via interface https://sdo.gsfc.nasa.gov/data/aiahmi/ GH-3
Download .jpg images from SDO using script based on solar rotation rate: * used synodic solar rotation rate: 27.25 days * synodic: as seen from Earth - accounts for Earth's orbital motion * see https://www.star.bris.ac.uk/bjm/solar/solarrot.html * rotation rate varies by solar heliolatitude * synodic value above is valid for middling heliolatitudes ~26N (~26S) * faster near equator: ~24.27 days * slower near poles: ~35 days at very high heliolatitudes near pole * value above almost matches rotation rate common in literature: * Carrington rotation rate: 27.26 days * but 27.25 days used for convenience cf hours * allows cycles: T00, T06, T12, T18 Note images aren't calibrated * so can't really compare images over these long gaps like used here * dynamic range variation -> brightness varies between images * better-calibrated source: get .fits data files from JSOC/other * e.g. via sunpy - see script comment Images downloaded as follows: ```console $ bin/download_sdo_data 2010-06-01 2023-10-01 0193 512 ~/open_source/spaceapps-2023-mo/data/immersed_sounds_space/SDO/solar_cycle_sequence/ [INFO] Tue 10 Oct 23:16:48 UTC 2023: downloading SDO images: [INFO] * from 2010-06-01 to 2023-10-01 [INFO] * from AIA channel 0193 at resolution 512 [INFO] * to /net/home/h03/ehenley/open_source/spaceapps-2023-mo/data/immersed_sounds_space/SDO/solar_cycle_sequence [INFO] (alternative images for each timestep are in /net/home/h03/ehenley/open_source/spaceapps-2023-mo/data/immersed_sounds_space/SDO/solar_cycle_sequence/alternatives) [INFO] Downloading images from https://sdo.gsfc.nasa.gov/assets/img/browse/2010/06/01 matching 20100601_00[0-1]???_512_0193.jpg [INFO] Downloading images from https://sdo.gsfc.nasa.gov/assets/img/browse/2010/06/28 matching 20100628_06[0-1]???_512_0193.jpg <snip L9-L183> [INFO] Downloading images from https://sdo.gsfc.nasa.gov/assets/img/browse/2023/08/15 matching 20230815_06[0-1]???_512_0193.jpg [INFO] Downloading images from https://sdo.gsfc.nasa.gov/assets/img/browse/2023/09/11 matching 20230911_12[0-1]???_512_0193.jpg [INFO] [INFO] Wed 11 Oct 02:33:22 UTC 2023: download complete ``` GH-3
Update the download script & README * mostly to expose image usage rules of road * also to be explicit that script here is a derived work of original script from NASA * Upstream script does not have a clear licence * https://sdo.gsfc.nasa.gov/data/bestpractice.php * Assume not an issue, given intention (for data!) seems to be for reuse for precisely NASA Space Apps sort of usage: * https://sdo.gsfc.nasa.gov/data/rules.php Also update README to: * crosslink to the resources just added * expose teams which chose spacewx-y challenges * clarify the creche activities: 2024 might be able to do more here * clarify the bootcamp stuff is to crosslink to last year's resources * this to keep institutional knowledge that these exists * again 2024 might be able to just reuse as pointers, even if don't rerun the bootcamp either GH-3
Add top-level link so all teams can be discovered, not just spacewx ones! Also add outputs for spacewx projects, to help discoverability GH-3
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi @kaedonkers
Wanting to merge in some stuff I created mostly over course of weekend, so it can be reusable future resource.
Chances are quite high that future NASA Space Apps challenges relating to spacewx can reuse these
This PR comprises:
Points to note
abddc39
Closes GH-3