berkayaydin commited on
Commit
9ce9342
·
verified ·
1 Parent(s): f40e5fa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -71
README.md CHANGED
@@ -1,111 +1,86 @@
1
  ---
2
  license: mit
3
- task_categories:
4
- - text-classification
5
  language:
6
  - en
7
  tags:
8
  - Astrophysics
9
  - Heliophysics
 
 
 
10
  configs:
11
  - config_name: default
12
  default: true
13
  data_files:
14
- - split: train
15
- path: "train.csv"
16
- - split: validation
17
- path: "validation.csv"
18
- - split: test
19
- path: "test.csv"
20
- - split: leaky_validation
21
- path: "leaky_validation.csv"
 
 
 
22
  ---
23
  ---
24
- # EVE EUV Spectra Modeling Dataset
25
 
26
- This dataset provides time-aligned Extreme Ultraviolet (EUV) irradiance spectra from NASA’s SDO/EVE (Extreme Ultraviolet Variability Experiment) instrument, to be paired with temporally matched image-based input features from HelioFM pipeline. It is designed for use in image to spectra regression modeling.
27
 
28
- ## Dataset Details
29
-
30
- ### Dataset Description
31
-
32
- The dataset consists of three splits (70-15-15): `train`, `val`, and `test`, each containing:
33
- - A timestamp
34
- - A 1343-dimensional spectrum corresponding to EUV wavelengths ranging from approximately 6.5 to 33.3 nm, observed at a 1-minute cadence
35
- - EUV measurements from both flare and quiet sun conditions
36
-
37
- **Curated by:** Dr. Shah Mohammad Bahauddin, Laboratory for Atmospheric and Space Physics, University of Colorado Boulder.
38
 
39
- ### Dataset Sources
40
 
41
- The data is sourced from high-resolution EUV spectra spanning 6.5 to 106.5 nm provided by the SDO/EVE instrument. For the downstream task of image-to-spectra modeling, we specifically utilize data from the MEGS-A (Multiple EUV Grating Spectrograph A) channel of EVE, which was operational from 2010 to 2014 and provided spectral coverage from 6.5 to 33 nm. The native EVE data are available from 2010 to 2014 at 10-second cadence. For this study, we extract one spectrum per minute by integration and retain only those flagged as high quality based on header metadata. This process yields a curated dataset of approximately two million spectra from five years of EVE operations. For downstream training and evaluation, we align with HelioFM’s 12-minute cadence, resulting in a final dataset of approximately 190,000 quality-filtered spectra for model development.
42
 
43
- ## Uses
44
 
45
- ### Direct Use
46
 
47
- - Regression modeling of solar EUV spectra from coronal image inputs and differential emission measures.
48
- - Timeseries forecasting of coronal EUV spectra.
49
 
50
- ## Dataset Structure
 
 
 
51
 
52
- Each split contains:
53
- - `timestamp`: A UTC datetime string
54
- - `intensity`: 1343 columns of EUV spectral intensity values labeled by their physical wavelengths (rounded to 2 decimal places in nanometers)
55
 
56
- The data is balancedly sourced from both quiet-Sun and flare conditions and split into `train`, `val`, and `test` using consistent time bins.
57
 
58
- ## Dataset Creation
 
59
 
60
- ### Curation Rationale
 
 
 
61
 
62
- This dataset enables machine learning models to learn from and predict EUV spectral behavior driven by solar dynamics. It addresses the need for high-resolution, calibrated spectral data paired with physics-based contextual input.
63
 
64
- ### Source Data
 
65
 
66
- The primary source of the dataset is the SDO-EVE Level 2b data product which contains 60-second integrations of extracted solar EUV irradiance in selected lines spanning a wide range of solar temperature measured by the MEGS-A and MEGS-B detectors. This dataset particularly contains MEGS-A data which measures from 6 to 33.33 nm. The Level 2b irradiance data are adjusted to 1-AU.
67
 
68
- - **Instrument Data:** https://lasp.colorado.edu/eve/data_access/eve_data/products/level2b/
69
-
70
- #### Data Collection and Processing
71
-
72
- Each MEGS-A irradiance observation is represented as a one-dimensional vector with 1343 bins. These measurements are strictly positive and span a dynamic range of 1e-9 to 1e-1 W/m^2/nm, depending on the feature and flare class. While MEGS-A originally offered 10-second cadence, we compute 1-minute averaged EVE spectra to reduce noise and facilitate temporal alignment with AIA image data. For the downstream application, we further temporally downsample our data to match the machine learning–ready SDO/AIA image cubes, which were sampled at 12-minute cadence. This choice follows the pretraining configuration of HelioFM, which was optimized for compatibility with the 12-minute cadence of SDO/HMI magnetograms, allowing future multi-modal tasks involving both intensity and magnetic field evolution. By adopting the same cadence for training and evaluation, we ensure internal consistency, reduce complexity in data handling, and maintain computational feasibility. The resulting dataset contains hundreds of thousands of temporally aligned AIA image cubes and EUV spectra, covering Solar Cycle 24 and parts of Solar Cycle 25, and includes both quiet-Sun and active-region conditions.
73
-
74
- We apply metadata-based screening using the quality flags provided in the EVE Level 2 data products. The **SC_FLAGS** byte identifies potential obstructions or pointing issues during observation. Only spectra flagged as **0** (clear, unobstructed) are retained, while any entries marked with atmospheric (Earth, lunar, planetary) penumbra or umbra conditions, or spacecraft off-pointing (**bit 32 set**), are excluded due to their impact on irradiance accuracy. The **FLAGS** byte indicates the instrument status and data processing integrity; entries with MEGS-A missing (**bit 0 set**), or those affected by too many integrations due to spacecraft timing issues (**bit 4 set**), are removed to prevent inclusion of anomalous or incomplete data. Additionally, we inspect the **BIN_FLAGS** byte for each spectral bin and discard spectra where a significant portion of the wavelength range contains nonzero flags, as this typically reflects calibration artifacts or spectral corruption. This multi-level flag screening is essential for eliminating spurious outliers and ensuring that the training set reflects genuine physical variability in the solar EUV spectrum.
75
 
76
- #### Who are the source data producers?
 
 
 
 
 
77
 
78
- For access and data product issues of source EVE data, please contact Don.Woodraska at lasp.colorado.edu.
79
- For science issues of EVE data, please contact Frank.Eparvier at lasp.colorado.edu.
80
 
81
- ## Bias, Risks, and Limitations
82
 
83
- - The dataset reflects only the time period available in the EVE and HelioFM input sources
84
- - May not generalize to other solar and stellar conditions (e.g., polar events, rare flaring periods) that are outliers to solar cycle 24 and 25.
85
- - Assumes accurate time alignment within a few minutes tolerance between AIA and EVE.
86
- - Does not contain the raw AIA or HMI images, only EUV spectral targets.
87
 
88
- ### Recommendations
89
 
90
- This dataset is suitable for regression, forecasting, or inverse modeling tasks within plasma physics, solar astrophysics and heliophysics. Users should verify that model outputs are physically interpretable and validate with domain-expert knowledge.
 
91
 
92
  ## Citation
93
 
94
- Woods, T. N., Eparvier, F. G., Hock, R., Jones, A. R., Woodraska, D., Judge, D., ... & Viereck, R. (2012). Extreme Ultraviolet Variability Experiment (EVE) on the Solar Dynamics Observatory (SDO): Overview of science objectives, instrument design, data products, and model developments. The solar dynamics observatory, 115-143, doi: http://doi.org/10.1007/s11207-009-9487-6
95
-
96
- Woodraska, D., & Eparvier, F. G. (2024). Solar Dynamics Observatory (SDO) Extreme Ultraviolet Variability Experiment (EVE): Version 8 science data product Release Notes, LASP / University of Colorado Boulder Technical Document. https://lasp.colorado.edu/eve/data_access/eve_data/products/level2b/EVE_L2B_V8_README.pdf
97
-
98
- ## Glossary
99
-
100
- - EUV: Extreme Ultraviolet
101
- - EVE: Extreme Ultraviolet Variability Experiment
102
- - AIA: Atmospheric Imaging Assembly (onboard SDO)
103
- - SDO: Solar Dynamics Observatory
104
 
105
- ## Dataset Card Authors
106
-
107
- Dr. Shah Mohammad Bahauddin, Laboratory for Atmospheric and Space Physics, University of Colorado Boulder.
108
-
109
- ## Dataset Card Contact
110
 
111
- Email: Shah.Bahauddin@lasp.colorado.edu
 
1
  ---
2
  license: mit
 
 
3
  language:
4
  - en
5
  tags:
6
  - Astrophysics
7
  - Heliophysics
8
+ - image-to-spectra
9
+ - EUV
10
+ - solar
11
  configs:
12
  - config_name: default
13
  default: true
14
  data_files:
15
+ - split: train
16
+ path: train.csv
17
+ - split: validation
18
+ path: validation.csv
19
+ - split: test
20
+ path: test.csv
21
+ - split: leaky_validation
22
+ path: leaky_validation.csv
23
+ pretty_name: EUV Spectra Modeling
24
+ size_categories:
25
+ - 100K<n<1M
26
  ---
27
  ---
 
28
 
 
29
 
 
 
 
 
 
 
 
 
 
 
30
 
31
+ # Solar EUV Spectra Modeling Dataset
32
 
33
+ ## Dataset Summary
34
 
35
+ This dataset provides time-aligned Extreme Ultraviolet (EUV) irradiance spectra from NASA’s SDO/EVE (Extreme Ultraviolet Variability Experiment) instrument. This dataset enables machine learning models to learn from and predict EUV spectral behavior driven by solar dynamics. It addresses the need for high-resolution, calibrated spectral data paired with physics-based contextual input. It is designed for image-to-spectra regression modeling, and includes 1,343-dimensional EUV spectrum spanning ~6.5–33.3 nm (with a 0.02 nm spectral resolution and 12-minute cadence). The dataset covers May 2010 to May 2014 (Solar Cycle 24, from MEGS-A operational period). The primary source of the dataset is the SDO/EVE Level 2b data product which contains 60-second integrations of extracted solar EUV irradiance in selected lines spanning a wide range of solar temperature measured by the MEGS-A and MEGS-B detectors. These observations are downsampled to 12-minute cadence. This dataset particularly contains [MEGS-A data](https://lasp.colorado.edu/eve/data_access/eve_data/products/level2b/). The Level 2b irradiance data are adjusted to 1-AU. Each MEGS-A irradiance observation is represented as a one-dimensional vector with 1,343 bins. These measurements are strictly positive and span a dynamic range of 1e-9 to 1e-1 W/m^2/nm, depending on the feature and flare class. Both quiet-Sun and flare periods are included. The list of wavelengths are provided in `euv_wavelengths.csv`. The dataset is primarily structured for machine learning experiments with splits designed for consistent training, validation, and testing across available years.
36
 
 
37
 
38
+ ## Supported Tasks and Applications
 
39
 
40
+ - **Regression modeling**: Predicting EUV spectra from coronal images (e.g., SDO/AIA)
41
+ - **Time-series forecasting**: Modeling spectral evolution across Solar Cycle 24
42
+ - **Inverse modeling**: Connecting spectral observations to physical parameters (e.g., Differential Emission Measures)
43
+ - **Space weather applications**: Improved EUV proxy models for ionospheric/thermospheric modeling
44
 
 
 
 
45
 
46
+ ## Data Structure
47
 
48
+ ### Data Files
49
+ Each dataset split is stored in tabular format (csv). Each row corresponds to a single **timestamped spectrum** with 12-minute cadence.
50
 
51
+ - `train.csv`: Instances from Feb 15 to Dec 31 in each year between 2010–2014
52
+ - `validation.csv`: Instances from Jan 15–31 from years 2012 and 2013
53
+ - `test.csv`: Instances from Jan 15–31 from years 2011 and 2014
54
+ - `leaky_validation.csv`: Instances from Jan 1–14 and Feb 1-14 of each year between 2010–2014
55
 
56
+ ### Features
57
 
58
+ - **`timestamp`**: UTC datetime string (ISO 8601 format)
59
+ - **`[intensity columns]*1,343`**: spectral irradiance (W/m²/nm) at a given wavelength bin (e.g., `7.21`)
60
 
 
61
 
62
+ ## Dataset Details
 
 
 
 
 
 
63
 
64
+ | Field | Description |
65
+ |------------------------|---------------------------------------------|
66
+ | **Temporal Coverage** | May 2010 – May 2014 |
67
+ | **Data Format** | CSV (.csv) |
68
+ | **Data Shape** | (1, 1343) per instance |
69
+ | **Cadence** | 12 minutes |
70
 
71
+ <!-- | **Data Size** | Total 128,352 instances |
 
72
 
 
73
 
74
+ [//]: # | **Total File Size** | ~3.7MB |
75
+ -->
 
 
76
 
 
77
 
78
+ ## Authors
79
+ - Shah Mohammad Bahauddin, Laboratory for Atmospheric and Space Physics, University of Colorado Boulder. [[email protected]](mailto:[email protected])
80
 
81
  ## Citation
82
 
 
 
 
 
 
 
 
 
 
 
83
 
84
+ Woods, T. N., Eparvier, F. G., Hock, R., Jones, A. R., Woodraska, D., Judge, D., ... & Viereck, R. (2012). Extreme Ultraviolet Variability Experiment (EVE) on the Solar Dynamics Observatory (SDO): Overview of science objectives, instrument design, data products, and model developments. The solar dynamics observatory, 115-143, doi: http://doi.org/10.1007/s11207-009-9487-6
 
 
 
 
85
 
86
+ Woodraska, D., & Eparvier, F. G. (2024). Solar Dynamics Observatory (SDO) Extreme Ultraviolet Variability Experiment (EVE): Version 8 science data product Release Notes, LASP / University of Colorado Boulder Technical Document. https://lasp.colorado.edu/eve/data_access/eve_data/products/level2b/EVE_L2B_V8_README.pdf