-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from Christian-Palmroos/main
Added SolO/STEP compatibility
- Loading branch information
Showing
2 changed files
with
129 additions
and
33 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
A library to run the interactive user interface in SEP event onset determination notebooks. | ||
@Author: Christian Palmroos <[email protected]> | ||
@Last updated: 2022-11-03 | ||
@Last updated: 2023-03-24 | ||
""" | ||
|
||
|
||
|
@@ -13,7 +13,7 @@ | |
list_of_sc = ["PSP", "SOHO", "Solar Orbiter", "STEREO-A", "STEREO-B", "Wind"] | ||
|
||
stereo_instr = ["SEPT", "HET"] # ["LET", "SEPT", "HET"] | ||
solo_instr = ["EPT", "HET"] | ||
solo_instr = ["STEP", "EPT", "HET"] | ||
bepi_instr = ["SIXS-P"] | ||
soho_instr = ["ERNE-HED", "EPHIN"] | ||
psp_instr = ["isois-epihi", "isois-epilo"] | ||
|
@@ -32,6 +32,8 @@ | |
view_dict = { | ||
("STEREO-A", "SEPT"): ("sun", "asun", "north", "south"), | ||
("STEREO-B", "SEPT"): ("sun", "asun", "north", "south"), | ||
("Solar Orbiter", "STEP"): ("Pixel averaged", "Pixel 1", "Pixel 2", "Pixel 3", "Pixel 4", "Pixel 5", "Pixel 6", "Pixel 7", "Pixel 8", "Pixel 9", "Pixel 10", | ||
"Pixel 11", "Pixel 12", "Pixel 13", "Pixel 14", "Pixel 15"), | ||
("Solar Orbiter", "EPT"): ("sun", "asun", "north", "south"), | ||
("Solar Orbiter", "HET"): ("sun", "asun", "north", "south"), | ||
("Bepicolombo", "SIXS-P"): (0, 1, 2, 3, 4), | ||
|
@@ -47,6 +49,7 @@ | |
("STEREO-B", "LET"): ("protons", "electrons"), | ||
("STEREO-B", "SEPT"): ("ions", "electrons"), | ||
("STEREO-B", "HET"): ("protons", "electrons"), | ||
("Solar Orbiter", "STEP"): ("ions", "electrons"), | ||
("Solar Orbiter", "EPT"): ("ions", "electrons"), | ||
("Solar Orbiter", "HET"): ("protons", "electrons"), | ||
("Bepicolombo", "SIXS-P"): ("protons", "electrons"), | ||
|