-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsnakemake-config.yaml
74 lines (63 loc) · 3.07 KB
/
snakemake-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# debug flag this runs pipeline with only 10 files
debug: False
data:
# GOES X-ray flux data
goes_path: "/mnt/disks/observational_data/GOES" # Location
goes_data: "goes.csv" # Data file
# EVE data
eve_path: "/mnt/disks/observational_data/EVE" # Location
eve_cutoff: 600 # Cutoff value
# MEGS-A irradiance data
megsa_path: "/mnt/disks/megsai_data/EVE" # Location
megsa_data: "megsa_irradiance.nc" # Data file
megsa_norm: "megsa_normalization.npy" # Normalization of data
megsa_wl: "megsa_wl_names.npy" # Wavelengths
megsa_ln: ["Fe XVIII", "Fe VIII", "Fe XX", "Fe IX", "Fe X", "Fe XI", "Fe XII", "Fe XIII", "Fe XIV", "He II", "Fe XV", "He II", "Fe XVI", "Mg IX"]
megsa_ln_wl: ["90", "131", "132", "171", "177", "180", "195", "202", "211", "255", "284", "304", "335", "368"] # Wavelengths
megsa_converted_data: "megsa_converted.npy" # Converted data file
# AIA data
aia_path: "/mnt/disks/observational_data/AIA" # Location
aia_mission: "SDO"
aia_wl: ["94", "131", "171", "193", "211", "304", "335", "1600", "1700"] # Wavelengths
aia_cutoff: 600 # Cutoff value
aia_resolution: 256 # Resolution to use
aia_reproject: False # Whether to remove off limb or on not
aia_stats: "stats.npz" # Statistics of AIA data
# Matches between AIA and EVE
matches_path: "/mnt/disks/megsai_data/AIA" # Location
matches_table: "matches_eve_aia.csv" # Table containing matches
matches_stacks: "stacks" # Folder containing the AIA image stacks
matches_euvi_path: "/mnt/disks/megsai_data/EUVI" # Location
matches_euvi_table: "matches_eve_euvi.csv" # Table containing matches
matches_euvib_table: "matches_eve_euvib.csv" # Table containing matches
# EUVI data
euvi_path: "/mnt/disks/stereo_data/EUVI" # Location
euvia_path: "/mnt/disks/stereo_data/EUVI/A" # Location
euvib_path: "/mnt/disks/stereo_data/EUVI/B" # Location
euvi_mission: "STEREO"
# euvi_wl: ["171", "195", "284", "304"] # Wavelengths
euvi_wl: ["171", "193", "211", "304"] # Wavelengths (ITI-translated)
euvi_cutoff: 600 # Cutoff value
euvi_resolution: 256 # Resolution to use
euvi_reproject: False # Whether to remove off limb or on not
euvi_stats: "stats.npz" # Statistics of AIA data
# EUI data
eui_path: "/mnt/disks/observational_data/EUI" # Location
eui_mission: "SolO"
eui_wl: ["171", "304"] # Wavelengths
# SUVI data
suvi_path: "/mnt/disks/observational_data/SUVI" # Location
suvi_mission: "GOES"
suvi_wl: ["94", "131", "171", "193", "211", "304"] # Wavelengths
# CIRCE data
circe_path: "/mnt/disks/observational_data/CIRCE" # Location
circe_mission: "VIGIL"
circe_wl: ["131", "193", "304"] # Wavelengths
# Model parameters
model:
config_file: "/home/benoit_tremblay_23/4piuvsun/megs_ai_config.yaml" # Path to the config file.
# Checkpoint(s)
checkpoint_path: "/mnt/disks/megsai_data/MEGS_AI" # Location
checkpoint_file: "model" # Filename to load checkpoint.
# Instruments and corresponding wavelength indices
instruments: ["94", "131", "171", "193", "211", "304", "335", "1600", "1700", "AIA", "EUVI", "EUI", "SUVI", "CIRCE"]