roc-film 1.13.5__py3-none-any.whl → 1.14.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. roc/__init__.py +2 -1
  2. roc/film/__init__.py +2 -2
  3. roc/film/commands.py +372 -323
  4. roc/film/config/__init__.py +0 -1
  5. roc/film/constants.py +101 -65
  6. roc/film/descriptor.json +127 -96
  7. roc/film/exceptions.py +28 -27
  8. roc/film/tasks/__init__.py +16 -16
  9. roc/film/tasks/cat_solo_hk.py +86 -74
  10. roc/film/tasks/cdf_postpro.py +438 -309
  11. roc/film/tasks/check_dds.py +39 -45
  12. roc/film/tasks/db_to_anc_bia_sweep_table.py +381 -0
  13. roc/film/tasks/dds_to_l0.py +232 -180
  14. roc/film/tasks/export_solo_coord.py +147 -0
  15. roc/film/tasks/file_handler.py +91 -75
  16. roc/film/tasks/l0_to_hk.py +117 -103
  17. roc/film/tasks/l0_to_l1_bia_current.py +38 -30
  18. roc/film/tasks/l0_to_l1_bia_sweep.py +417 -329
  19. roc/film/tasks/l0_to_l1_sbm.py +250 -208
  20. roc/film/tasks/l0_to_l1_surv.py +185 -130
  21. roc/film/tasks/make_daily_tm.py +40 -37
  22. roc/film/tasks/merge_tcreport.py +77 -71
  23. roc/film/tasks/merge_tmraw.py +101 -88
  24. roc/film/tasks/parse_dds_xml.py +21 -20
  25. roc/film/tasks/set_l0_utc.py +51 -49
  26. roc/film/tests/cdf_compare.py +565 -0
  27. roc/film/tests/hdf5_compare.py +84 -62
  28. roc/film/tests/test_dds_to_l0.py +93 -51
  29. roc/film/tests/test_dds_to_tc.py +8 -11
  30. roc/film/tests/test_dds_to_tm.py +8 -10
  31. roc/film/tests/test_film.py +161 -116
  32. roc/film/tests/test_l0_to_hk.py +64 -36
  33. roc/film/tests/test_l0_to_l1_bia.py +10 -14
  34. roc/film/tests/test_l0_to_l1_sbm.py +14 -19
  35. roc/film/tests/test_l0_to_l1_surv.py +68 -41
  36. roc/film/tests/test_metadata.py +21 -20
  37. roc/film/tests/tests.py +743 -396
  38. roc/film/tools/__init__.py +5 -5
  39. roc/film/tools/dataset_tasks.py +34 -2
  40. roc/film/tools/file_helpers.py +390 -269
  41. roc/film/tools/l0.py +402 -324
  42. roc/film/tools/metadata.py +147 -127
  43. roc/film/tools/skeleton.py +12 -17
  44. roc/film/tools/tools.py +109 -92
  45. roc/film/tools/xlsx2skt.py +161 -139
  46. {roc_film-1.13.5.dist-info → roc_film-1.14.0.dist-info}/LICENSE +127 -125
  47. roc_film-1.14.0.dist-info/METADATA +60 -0
  48. roc_film-1.14.0.dist-info/RECORD +50 -0
  49. {roc_film-1.13.5.dist-info → roc_film-1.14.0.dist-info}/WHEEL +1 -1
  50. roc/film/tasks/l0_to_anc_bia_sweep_table.py +0 -348
  51. roc_film-1.13.5.dist-info/METADATA +0 -120
  52. roc_film-1.13.5.dist-info/RECORD +0 -48
roc/film/descriptor.json CHANGED
@@ -6,10 +6,10 @@
6
6
  "description": "RPW FILe Maker (FILM): Plugin to make RPW L0, L1 and HK data files"
7
7
  },
8
8
  "release": {
9
- "version": "1.13.5",
10
- "date": "2023-09-07",
9
+ "version": "1.14.0",
10
+ "date": "2024-12-06",
11
11
  "author": "Xavier Bonnin <xavier.bonnin@obspm.fr>, ROC Team <roc.support@sympa.obspm.fr>",
12
- "modification": "Hotfix https://gitlab.obspm.fr/ROC/Pipelines/Plugins/FILM/-/issues/40",
12
+ "modification": "Update python dev deps and README",
13
13
  "url": "https://gitlab.obspm.fr/ROC/Pipelines/Plugins/FILM"
14
14
  },
15
15
  "tasks": [
@@ -42,13 +42,14 @@
42
42
  "name": "SOLO RPW TDS L1 survey mode regular snapshot waveform data",
43
43
  "description": "Contains RPW TDS L1 RSWF science data in survey mode, time-tagged",
44
44
  "level": "L1",
45
- "template": "SOLO_L1_RPW-TDS-SURV-RSWF_V??.cdf",
45
+ "template": "solo_L1_rpw-tds-surv-rswf_*_V??.cdf",
46
46
  "packet": [
47
47
  "TM_TDS_SCIENCE_NORMAL_RSWF"
48
48
  ],
49
49
  "mods": [
50
- "2020-10-23 -- First release: Initial version",
51
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies | Resize WF data array correctly"
50
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
51
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies | Resize WF data array correctly",
52
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
52
53
  ]
53
54
  },
54
55
  "l1_surv_tswf": {
@@ -56,13 +57,14 @@
56
57
  "name": "SOLO RPW TDS L1 survey mode trigggered snapshot waveform data",
57
58
  "description": "Contains RPW TDS L1 TSWF science data in survey mode, time-tagged",
58
59
  "level": "L1",
59
- "template": "SOLO_L1_RPW-TDS-SURV-TSWF_V??.cdf",
60
+ "template": "solo_L1_rpw-tds-surv-tswf_*_V??.cdf",
60
61
  "packet": [
61
62
  "TM_TDS_SCIENCE_NORMAL_TSWF"
62
63
  ],
63
64
  "mods": [
64
- "2020-10-23 -- First release: Initial version",
65
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies | Resize WF data array correctly"
65
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
66
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies | Resize WF data array correctly",
67
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
66
68
  ]
67
69
  },
68
70
  "l1_surv_hist1d": {
@@ -70,13 +72,14 @@
70
72
  "name": "SOLO RPW TDS L1 survey mode 1d histograms",
71
73
  "description": "Contains RPW TDS L1 HIST1D science data in survey mode, time-tagged",
72
74
  "level": "L1",
73
- "template": "SOLO_L1_RPW-TDS-SURV-HIST1D_V??.cdf",
75
+ "template": "solo_L1_rpw-tds-surv-hist1d_*_V??.cdf",
74
76
  "packet": [
75
77
  "TM_TDS_SCIENCE_NORMAL_HIST1D"
76
78
  ],
77
79
  "mods": [
78
- "2020-10-23 -- First release: Initial version",
79
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
80
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
81
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
82
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
80
83
  ]
81
84
  },
82
85
  "l1_surv_hist2d": {
@@ -84,13 +87,14 @@
84
87
  "name": "SOLO RPW TDS L1 survey mode 2d histograms",
85
88
  "description": "Contains RPW TDS L1 HIST2D science data in survey mode, time-tagged",
86
89
  "level": "L1",
87
- "template": "SOLO_L1_RPW-TDS-SURV-HIST2D_V??.cdf",
90
+ "template": "solo_L1_rpw-tds-surv-hist2d_*_V??.cdf",
88
91
  "packet": [
89
92
  "TM_TDS_SCIENCE_NORMAL_HIST2D"
90
93
  ],
91
94
  "mods": [
92
- "2020-10-23 -- First release: Initial version",
93
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
95
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
96
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
97
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
94
98
  ]
95
99
  },
96
100
  "l1_surv_stat": {
@@ -98,13 +102,14 @@
98
102
  "name": "SOLO RPW TDS L1 survey mode statistics",
99
103
  "description": "Contains RPW TDS L1 STAT science data in survey mode, time-tagged",
100
104
  "level": "L1",
101
- "template": "SOLO_L1_RPW-TDS-SURV-STAT_V??.cdf",
105
+ "template": "solo_L1_rpw-tds-surv-stat_*_V??.cdf",
102
106
  "packet": [
103
107
  "TM_TDS_SCIENCE_NORMAL_STAT"
104
108
  ],
105
109
  "mods": [
106
- "2020-10-23 -- First release: Initial version",
107
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
110
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
111
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
112
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
108
113
  ]
109
114
  },
110
115
  "l1_surv_mamp": {
@@ -112,13 +117,14 @@
112
117
  "name": "SOLO RPW TDS L1 survey mode MAMP",
113
118
  "description": "Contains RPW TDS L1 MAMP science data in survey mode, time-tagged",
114
119
  "level": "L1",
115
- "template": "SOLO_L1_RPW-TDS-SURV-MAMP_V??.cdf",
120
+ "template": "solo_L1_rpw-tds-surv-mamp_*_V??.cdf",
116
121
  "packet": [
117
122
  "TM_TDS_SCIENCE_NORMAL_MAMP"
118
123
  ],
119
124
  "mods": [
120
- "2020-10-23 -- First release: Initial version",
121
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | TDS MAMP samples are now well sorted | Fix attribute inconsistencies"
125
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
126
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | TDS MAMP samples are now well sorted | Fix attribute inconsistencies",
127
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
122
128
  ]
123
129
  },
124
130
  "l1_lfm_rswf": {
@@ -126,13 +132,14 @@
126
132
  "name": "SOLO RPW TDS L1 LF mode regular snapshot waveform data",
127
133
  "description": "Contains RPW TDS L1 RSWF science data in LFM mode, time-tagged",
128
134
  "level": "L1",
129
- "template": "SOLO_L1_RPW-TDS-LFM-RSWF_V??.cdf",
135
+ "template": "solo_L1_rpw-tds-lfm-rswf_*_V??.cdf",
130
136
  "packet": [
131
137
  "TM_TDS_SCIENCE_LFM_RSWF"
132
138
  ],
133
139
  "mods": [
134
- "2020-10-23 -- First release: Initial version",
135
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies | Resize WF data array correctly"
140
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
141
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies | Resize WF data array correctly",
142
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
136
143
  ]
137
144
  },
138
145
  "l1_lfm_cwf": {
@@ -140,13 +147,14 @@
140
147
  "name": "SOLO RPW TDS L1 LF mode continuous waveform data",
141
148
  "description": "Contains RPW TDS L1 CWF science data in LFM mode, time-tagged",
142
149
  "level": "L1",
143
- "template": "SOLO_L1_RPW-TDS-LFM-CWF_V??.cdf",
150
+ "template": "solo_L1_rpw-tds-lfm-cwf_*_V??.cdf",
144
151
  "packet": [
145
152
  "TM_TDS_SCIENCE_LFM_CWF"
146
153
  ],
147
154
  "mods": [
148
- "2020-10-23 -- First release: Initial version",
149
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
155
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
156
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
157
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
150
158
  ]
151
159
  },
152
160
  "l1_lfm_sm": {
@@ -154,13 +162,14 @@
154
162
  "name": "SOLO RPW TDS L1 LF mode SM data",
155
163
  "description": "Contains RPW TDS L1 SM science data in LFM mode, time-tagged",
156
164
  "level": "L1",
157
- "template": "SOLO_L1_RPW-TDS-LFM-SM_V??.cdf",
165
+ "template": "solo_L1_rpw-tds-lfm-sm_*_V??.cdf",
158
166
  "packet": [
159
167
  "TM_TDS_SCIENCE_LFM_SM"
160
168
  ],
161
169
  "mods": [
162
- "2020-10-23 -- First release: Initial version",
163
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
170
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
171
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
172
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
164
173
  ]
165
174
  },
166
175
  "l1_lfm_psd": {
@@ -168,13 +177,14 @@
168
177
  "name": "SOLO RPW TDS L1 LF mode PSD data",
169
178
  "description": "Contains RPW TDS L1 PSD science data in LFM mode, time-tagged",
170
179
  "level": "L1",
171
- "template": "SOLO_L1_RPW-TDS-LFM-PSD_V??.cdf",
180
+ "template": "solo_L1_rpw-tds-lfm-psd_*_V??.cdf",
172
181
  "packet": [
173
182
  "TM_TDS_SCIENCE_LFM_PSD"
174
183
  ],
175
184
  "mods": [
176
- "2020-10-23 -- First release: Initial version",
177
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
185
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
186
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
187
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
178
188
  ]
179
189
  },
180
190
  "l1_surv_asm": {
@@ -182,15 +192,16 @@
182
192
  "name": "SOLO RPW LFR L1 survey mode ASM data",
183
193
  "description": "Contains RPW LFR L1 ASM science data in survey mode, time-tagged",
184
194
  "level": "L1",
185
- "template": "SOLO_L1_RPW-LFR-SURV-ASM_V??.cdf",
195
+ "template": "solo_L1_rpw-lfr-surv-asm_*_V??.cdf",
186
196
  "packet": [
187
197
  "TM_LFR_SCIENCE_NORMAL_ASM_F0",
188
198
  "TM_LFR_SCIENCE_NORMAL_ASM_F1",
189
199
  "TM_LFR_SCIENCE_NORMAL_ASM_F2"
190
200
  ],
191
201
  "mods": [
192
- "2020-10-23 -- First release: Initial version",
193
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
202
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
203
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
204
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
194
205
  ]
195
206
  },
196
207
  "l1_surv_bp1": {
@@ -198,7 +209,7 @@
198
209
  "name": "SOLO RPW LFR L1 survey mode BP1 data",
199
210
  "description": "Contains RPW LFR L1 BP1 science data in survey mode, time-tagged",
200
211
  "level": "L1",
201
- "template": "SOLO_L1_RPW-LFR-SURV-BP1_V??.cdf",
212
+ "template": "solo_L1_rpw-lfr-surv-bp1_*_V??.cdf",
202
213
  "packet": [
203
214
  "TM_LFR_SCIENCE_NORMAL_BP1_F0",
204
215
  "TM_LFR_SCIENCE_NORMAL_BP1_F1",
@@ -207,8 +218,9 @@
207
218
  "TM_LFR_SCIENCE_BURST_BP1_F1"
208
219
  ],
209
220
  "mods": [
210
- "2020-10-23 -- First release: Initial version",
211
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
221
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
222
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
223
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
212
224
  ]
213
225
  },
214
226
  "l1_surv_bp2": {
@@ -216,7 +228,7 @@
216
228
  "name": "SOLO RPW LFR L1 survey mode BP2 data",
217
229
  "description": "Contains RPW LFR L1 BP2 science data in survey mode, time-tagged",
218
230
  "level": "L1",
219
- "template": "SOLO_L1_RPW-LFR-SURV-BP2_V??.cdf",
231
+ "template": "solo_L1_rpw-lfr-surv-bp2_*_V??.cdf",
220
232
  "packet": [
221
233
  "TM_LFR_SCIENCE_NORMAL_BP2_F0",
222
234
  "TM_LFR_SCIENCE_NORMAL_BP2_F1",
@@ -225,8 +237,9 @@
225
237
  "TM_LFR_SCIENCE_BURST_BP2_F1"
226
238
  ],
227
239
  "mods": [
228
- "2020-10-23 -- First release: Initial version",
229
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
240
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
241
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
242
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
230
243
  ]
231
244
  },
232
245
  "l1_surv_cwf": {
@@ -234,15 +247,16 @@
234
247
  "name": "SOLO RPW LFR L1 survey mode continuous waveform data",
235
248
  "description": "Contains RPW LFR L1 CWF science data in survey mode, time-tagged",
236
249
  "level": "L1",
237
- "template": "SOLO_L1_RPW-LFR-SURV-CWF_V??.cdf",
250
+ "template": "solo_L1_rpw-lfr-surv-cwf_*_V??.cdf",
238
251
  "packet": [
239
252
  "TM_LFR_SCIENCE_NORMAL_CWF_F3",
240
253
  "TM_LFR_SCIENCE_NORMAL_CWF_LONG_F3",
241
254
  "TM_LFR_SCIENCE_BURST_CWF_F2"
242
255
  ],
243
256
  "mods": [
244
- "2020-10-23 -- First release: Initial version",
245
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
257
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
258
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
259
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
246
260
  ]
247
261
  },
248
262
  "l1_surv_swf": {
@@ -250,15 +264,16 @@
250
264
  "name": "SOLO RPW LFR L1 survey mode snapshot waveform data",
251
265
  "description": "Contains RPW LFR L1 SWF science data in survey mode, time-tagged",
252
266
  "level": "L1",
253
- "template": "SOLO_L1_RPW-LFR-SURV-SWF_V??.cdf",
267
+ "template": "solo_L1_rpw-lfr-surv-swf_*_V??.cdf",
254
268
  "packet": [
255
269
  "TM_LFR_SCIENCE_NORMAL_SWF_F0",
256
270
  "TM_LFR_SCIENCE_NORMAL_SWF_F1",
257
271
  "TM_LFR_SCIENCE_NORMAL_SWF_F2"
258
272
  ],
259
273
  "mods": [
260
- "2020-10-23 -- First release: Initial version",
261
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
274
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
275
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
276
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
262
277
  ]
263
278
  },
264
279
  "l1_surv_tnr": {
@@ -266,15 +281,16 @@
266
281
  "name": "SOLO RPW TNR L1 survey mode data",
267
282
  "description": "Contains RPW TNR L1 science data in survey mode, time-tagged",
268
283
  "level": "L1",
269
- "template": "SOLO_L1_RPW-TNR-SURV_V??.cdf",
284
+ "template": "solo_L1_rpw-tnr-surv_*_V??.cdf",
270
285
  "packet": [
271
286
  "TM_THR_SCIENCE_NORMAL_TNR",
272
287
  "TM_THR_SCIENCE_BURST_TNR",
273
288
  "TM_THR_SCIENCE_CALIBRATION_TNR"
274
289
  ],
275
290
  "mods": [
276
- "2020-10-23 -- First release: Initial version",
277
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
291
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
292
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
293
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
278
294
  ]
279
295
  },
280
296
  "l1_surv_hfr": {
@@ -282,15 +298,16 @@
282
298
  "name": "SOLO RPW HFR L1 survey mode data",
283
299
  "description": "Contains RPW HFR L1 science data in survey mode, time-tagged",
284
300
  "level": "L1",
285
- "template": "SOLO_L1_RPW-HFR-SURV_V??.cdf",
301
+ "template": "solo_L1_rpw-hfr-surv_*_V??.cdf",
286
302
  "packet": [
287
303
  "TM_THR_SCIENCE_NORMAL_HFR",
288
304
  "TM_THR_SCIENCE_BURST_HFR",
289
305
  "TM_THR_SCIENCE_CALIBRATION_HFR"
290
306
  ],
291
307
  "mods": [
292
- "2020-10-23 -- First release: Initial version",
293
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
308
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
309
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
310
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
294
311
  ]
295
312
  }
296
313
  }
@@ -310,12 +327,13 @@
310
327
  "name": "SOLO RPW TDS L1 SBM1 mode regular snapshot waveform data",
311
328
  "description": "Contains RPW TDS L1 RSWF science data in SBM1 mode, time-tagged",
312
329
  "level": "L1",
313
- "template": "SOLO_L1_RPW-TDS-SBM1-RSWF_V??.cdf",
330
+ "template": "solo_L1_rpw-tds-sbm1-rswf_*_V??.cdf",
314
331
  "packet": [
315
332
  "TM_TDS_SCIENCE_SBM1_RSWF"
316
333
  ],
317
334
  "mods": [
318
- "2021-02-16 -- First release: Initial version"
335
+ "2021-02-16 -- V1.8.4 -- First release: Initial version",
336
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
319
337
  ]
320
338
  },
321
339
  "l1_sbm2_tswf": {
@@ -323,12 +341,13 @@
323
341
  "name": "SOLO RPW TDS L1 SBM2 mode triggered snapshot waveform data",
324
342
  "description": "Contains RPW TDS L1 TSWF science data in SBM2 mode, time-tagged",
325
343
  "level": "L1",
326
- "template": "SOLO_L1_RPW-TDS-SBM2-TSWF_V??.cdf",
344
+ "template": "solo_L1_rpw-tds-sbm2-tswf_*_V??.cdf",
327
345
  "packet": [
328
346
  "TM_TDS_SCIENCE_SBM2_TSWF"
329
347
  ],
330
348
  "mods": [
331
- "2021-02-16 -- First release: Initial version"
349
+ "2021-02-16 -- V1.8.4 -- First release: Initial version",
350
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
332
351
  ]
333
352
  },
334
353
  "l1_sbm1_bp1": {
@@ -336,12 +355,13 @@
336
355
  "name": "SOLO RPW LFR L1 SBM1 mode BP1 data",
337
356
  "description": "Contains RPW LFR L1 BP1 science data in SBM1 mode, time-tagged",
338
357
  "level": "L1",
339
- "template": "SOLO_L1_RPW-LFR-SBM1-BP1_V??.cdf",
358
+ "template": "solo_L1_rpw-lfr-sbm1-bp1_*_V??.cdf",
340
359
  "packet": [
341
360
  "TM_LFR_SCIENCE_SBM1_BP1_F0"
342
361
  ],
343
362
  "mods": [
344
- "2021-02-16 -- First release: Initial version"
363
+ "2021-02-16 -- V1.8.4 -- First release: Initial version",
364
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
345
365
  ]
346
366
  },
347
367
  "l1_sbm1_bp2": {
@@ -349,12 +369,13 @@
349
369
  "name": "SOLO RPW LFR L1 SBM1 mode BP2 data",
350
370
  "description": "Contains RPW LFR L1 BP2 science data in SBM1 mode, time-tagged",
351
371
  "level": "L1",
352
- "template": "SOLO_L1_RPW-LFR-SBM1-BP2_V??.cdf",
372
+ "template": "solo_L1_rpw-lfr-sbm1-bp2_*_V??.cdf",
353
373
  "packet": [
354
374
  "TM_LFR_SCIENCE_SBM1_BP2_F0"
355
375
  ],
356
376
  "mods": [
357
- "2021-02-16 -- First release: Initial version"
377
+ "2021-02-16 -- V1.8.4 -- First release: Initial version",
378
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
358
379
  ]
359
380
  },
360
381
  "l1_sbm1_cwf": {
@@ -362,12 +383,13 @@
362
383
  "name": "SOLO RPW LFR L1 SBM1 mode continuous waveform data",
363
384
  "description": "Contains RPW LFR L1 CWF science data in survey mode, time-tagged",
364
385
  "level": "L1",
365
- "template": "SOLO_L1_RPW-LFR-SBM1-CWF_V??.cdf",
386
+ "template": "solo_L1_rpw-lfr-sbm1-cwf_*_V??.cdf",
366
387
  "packet": [
367
388
  "TM_LFR_SCIENCE_SBM1_CWF_F1"
368
389
  ],
369
390
  "mods": [
370
- "2021-02-16 -- First release: Initial version"
391
+ "2021-02-16 -- V1.8.4 -- First release: Initial version",
392
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
371
393
  ]
372
394
  },
373
395
  "l1_sbm2_bp1": {
@@ -375,13 +397,14 @@
375
397
  "name": "SOLO RPW LFR L1 SBM2 mode BP1 data",
376
398
  "description": "Contains RPW LFR L1 BP1 science data in SBM2 mode, time-tagged",
377
399
  "level": "L1",
378
- "template": "SOLO_L1_RPW-LFR-SBM2-BP1_V??.cdf",
400
+ "template": "solo_L1_rpw-lfr-sbm2-bp1_*_V??.cdf",
379
401
  "packet": [
380
402
  "TM_LFR_SCIENCE_SBM2_BP1_F0",
381
403
  "TM_LFR_SCIENCE_SBM2_BP1_F1"
382
404
  ],
383
405
  "mods": [
384
- "2021-02-16 -- First release: Initial version"
406
+ "2021-02-16 -- V1.8.4 -- First release: Initial version",
407
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
385
408
  ]
386
409
  },
387
410
  "l1_sbm2_bp2": {
@@ -389,13 +412,14 @@
389
412
  "name": "SOLO RPW LFR L1 SBM2 mode BP2 data",
390
413
  "description": "Contains RPW LFR L1 BP2 science data in SBM2 mode, time-tagged",
391
414
  "level": "L1",
392
- "template": "SOLO_L1_RPW-LFR-SBM2-BP2_V??.cdf",
415
+ "template": "solo_L1_rpw-lfr-sbm2-bp2_*_V??.cdf",
393
416
  "packet": [
394
417
  "TM_LFR_SCIENCE_SBM2_BP2_F0",
395
418
  "TM_LFR_SCIENCE_SBM2_BP2_F1"
396
419
  ],
397
420
  "mods": [
398
- "2021-02-16 -- First release: Initial version"
421
+ "2021-02-16 -- V1.8.4 -- First release: Initial version",
422
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
399
423
  ]
400
424
  },
401
425
  "l1_sbm2_cwf": {
@@ -403,12 +427,13 @@
403
427
  "name": "SOLO RPW LFR L1 SBM2 mode continuous waveform data",
404
428
  "description": "Contains RPW LFR L1 CWF science data in survey mode, time-tagged",
405
429
  "level": "L1",
406
- "template": "SOLO_L1_RPW-LFR-SBM2-CWF_V??.cdf",
430
+ "template": "solo_L1_rpw-lfr-sbm2-cwf_*_V??.cdf",
407
431
  "packet": [
408
432
  "TM_LFR_SCIENCE_SBM2_CWF_F2"
409
433
  ],
410
434
  "mods": [
411
- "2021-02-16 -- First release: Initial version"
435
+ "2021-02-16 -- V1.8.4 -- First release: Initial version",
436
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
412
437
  ]
413
438
  }
414
439
  }
@@ -420,9 +445,6 @@
420
445
  "inputs": {
421
446
  "l0_file": {
422
447
  "identifier": "SOLO_L0_RPW"
423
- },
424
- "anc_bia_sweep_table": {
425
- "identifier": "SOLO_ANC_RPW-BIA-SWEEP-TABLE"
426
448
  }
427
449
  },
428
450
  "outputs": {
@@ -431,7 +453,7 @@
431
453
  "name": "SOLO RPW L1 Bias sweep data",
432
454
  "description": "Contains RPW L1 Bias sweep parameters, time-tagged",
433
455
  "level": "L1",
434
- "template": "SOLO_L1_RPW-BIA-SWEEP_V??.cdf",
456
+ "template": "solo_L1_rpw-bia-sweep_*_V??.cdf",
435
457
  "packet": [
436
458
  "TC_DPU_START_BIAS_SWEEP",
437
459
  "TM_DPU_EVENT_PR_BIA_SWEEP",
@@ -439,8 +461,9 @@
439
461
  "TM_DPU_SCIENCE_BIAS_CALIB_LONG"
440
462
  ],
441
463
  "mods": [
442
- "2020-10-23 -- First release: Initial version",
443
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
464
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
465
+ "2021-02-16 -- V1.8.4 -- V1.6.1 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
466
+ "2024-12-06 -- V1.14.0 -- Make CDF compliant with SolO metadata standards 2.6 and RCS ICD 1.7"
444
467
  ]
445
468
  }
446
469
  }
@@ -460,15 +483,16 @@
460
483
  "name": "SOLO RPW Bias current data",
461
484
  "description": "Contains RPW L1 Bias current parameters, time-tagged",
462
485
  "level": "L1",
463
- "template": "SOLO_L1_RPW-BIA-CURRENT_V??.cdf",
486
+ "template": "solo_L1_rpw-bia-current_*_V??.cdf",
464
487
  "packet": [
465
488
  "TC_DPU_SET_BIAS1",
466
489
  "TC_DPU_SET_BIAS2",
467
490
  "TC_DPU_SET_BIAS3"
468
491
  ],
469
492
  "mods": [
470
- "2020-10-23 -- First release: Initial version",
471
- "2021-02-16 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies"
493
+ "2020-10-23 -- V1.6.1 -- First release: Initial version",
494
+ "2021-02-16 -- V1.8.4 -- Second release: OBS_ID attribute is now correctly set | MODS is now used for data release log and SKELETON_MODS for CDF skeleton change log | Fix attribute inconsistencies",
495
+ "2024-12-06 -- V1.14.0 -- Update CDF metadata (not SolO standards compliant)"
472
496
  ]
473
497
  }
474
498
  }
@@ -488,7 +512,7 @@
488
512
  "name": "SOLO RPW HK DBS data",
489
513
  "description": "Contains RPW DBS HK parameters, time-tagged",
490
514
  "level": "HK",
491
- "template": "SOLO_HK_RPW-DBS_V??.cdf",
515
+ "template": "solo_HK_rpw-dbs_*_V??.cdf",
492
516
  "packet": [
493
517
  "TM_DPU_DBS_HK"
494
518
  ]
@@ -498,7 +522,7 @@
498
522
  "name": "SOLO RPW HK DAS data",
499
523
  "description": "Contains RPW DAS HK parameters, time-tagged",
500
524
  "level": "HK",
501
- "template": "SOLO_HK_RPW-DAS_V??.cdf",
525
+ "template": "solo_HK_rpw-das_*_V??.cdf",
502
526
  "packet": [
503
527
  "TM_DPU_DAS_HK"
504
528
  ]
@@ -508,7 +532,7 @@
508
532
  "name": "SOLO RPW HK DAS statistic data",
509
533
  "description": "Contains RPW DAS STATISTIC HK parameters, time-tagged",
510
534
  "level": "HK",
511
- "template": "SOLO_HK_RPW-DAS-STATISTICS_V02.cdf",
535
+ "template": "solo_HK_rpw-das-statistics_*_V??.cdf",
512
536
  "packet": [
513
537
  "TM_DPU_DAS_STATISTICS_HK"
514
538
  ]
@@ -518,7 +542,7 @@
518
542
  "name": "SOLO RPW HK PDU data",
519
543
  "description": "Contains RPW PDU HK parameters, time-tagged",
520
544
  "level": "HK",
521
- "template": "SOLO_HK_RPW-PDU_V??.cdf",
545
+ "template": "solo_HK_rpw-pdu_*_V??.cdf",
522
546
  "packet": [
523
547
  "TM_DPU_PDU_HK"
524
548
  ]
@@ -528,7 +552,7 @@
528
552
  "name": "SOLO RPW HK BIA data",
529
553
  "description": "Contains RPW BIA HK parameters, time-tagged",
530
554
  "level": "HK",
531
- "template": "SOLO_HK_RPW-BIA_V??.cdf",
555
+ "template": "solo_HK_rpw-bia_*_V??.cdf",
532
556
  "packet": [
533
557
  "TM_DPU_BIA_HK"
534
558
  ]
@@ -538,7 +562,7 @@
538
562
  "name": "SOLO RPW HK THR data",
539
563
  "description": "Contains RPW THR HK parameters, time-tagged",
540
564
  "level": "HK",
541
- "template": "SOLO_HK_RPW-THR_V??.cdf",
565
+ "template": "solo_HK_rpw-thr_*_V??.cdf",
542
566
  "packet": [
543
567
  "TM_THR_HK"
544
568
  ]
@@ -548,7 +572,7 @@
548
572
  "name": "SOLO RPW HK TDS data",
549
573
  "description": "Contains RPW TDS HK parameters, time-tagged",
550
574
  "level": "HK",
551
- "template": "SOLO_HK_RPW-TDS_V??.cdf",
575
+ "template": "solo_HK_rpw-tds_*_V??.cdf",
552
576
  "packet": [
553
577
  "TM_TDS_HK"
554
578
  ]
@@ -558,7 +582,7 @@
558
582
  "name": "SOLO RPW HK LFR data",
559
583
  "description": "Contains RPW LFR HK parameters, time-tagged",
560
584
  "level": "HK",
561
- "template": "SOLO_HK_RPW-LFR_V??.cdf",
585
+ "template": "solo_HK_rpw-lfr_*_V??.cdf",
562
586
  "packet": [
563
587
  "TM_LFR_HK"
564
588
  ]
@@ -580,7 +604,7 @@
580
604
  "name": "SOLO RPW HK DAS DUMP data",
581
605
  "description": "Contains RPW DAS HK dump parameters, time-tagged",
582
606
  "level": "HK",
583
- "template": "SOLO_HK_RPW-DAS-DUMP_V??.cdf",
607
+ "template": "solo_HK_rpw-das-dump_*_V??.cdf",
584
608
  "packet": "TM_DPU_DAS_PARAMETER_DUMP"
585
609
  }
586
610
  }
@@ -657,14 +681,10 @@
657
681
  }
658
682
  },
659
683
  {
660
- "name": "l0_to_anc_bia_sweep_table",
684
+ "name": "db_to_anc_bia_sweep_table",
661
685
  "category": "Data file production",
662
- "description": "Create CSV file containing SOLO RPW bias sweep table list",
663
- "inputs": {
664
- "l0_file": {
665
- "identifier": "SOLO_L0_RPW"
666
- }
667
- },
686
+ "description": "Create CSV file containing SOLO RPW bias sweep table data from ROC database",
687
+ "inputs": {},
668
688
  "outputs": {
669
689
  "anc_bia_sweep_table": {
670
690
  "identifier": "SOLO_ANC_RPW-BIA-SWEEP-TABLE",
@@ -788,6 +808,17 @@
788
808
  "identifier": "SOLO_L1_RPW-CDF"
789
809
  }
790
810
  }
811
+ },
812
+ {
813
+ "name": "export_solo_hee_coord",
814
+ "category": "Data file processing",
815
+ "description": "Produce CSV file with SolO HEE coordinates",
816
+ "inputs": {},
817
+ "outputs": {
818
+ "output_csv": {
819
+ "identifier": "SOLO_ANC_HEE_COORD"
820
+ }
821
+ }
791
822
  }
792
823
  ]
793
- }
824
+ }