metkitlib 1.16.0.9__cp312-cp312-manylinux_2_28_aarch64.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 (104) hide show
  1. metkitlib/__init__.py +3 -0
  2. metkitlib/bin/bufr-sanity-check +0 -0
  3. metkitlib/bin/compare-mars-requests.py +265 -0
  4. metkitlib/bin/mars-archive-script +0 -0
  5. metkitlib/bin/parse-mars-request +0 -0
  6. metkitlib/include/metkit/api/metkit_c.h +255 -0
  7. metkitlib/include/metkit/codes/BUFRDecoder.h +47 -0
  8. metkitlib/include/metkit/codes/BufrContent.h +43 -0
  9. metkitlib/include/metkit/codes/CodesContent.h +67 -0
  10. metkitlib/include/metkit/codes/CodesHandleDeleter.h +41 -0
  11. metkitlib/include/metkit/codes/CodesSplitter.h +40 -0
  12. metkitlib/include/metkit/codes/GRIBDecoder.h +42 -0
  13. metkitlib/include/metkit/codes/GribAccessor.h +75 -0
  14. metkitlib/include/metkit/codes/GribHandle.h +121 -0
  15. metkitlib/include/metkit/codes/GribIterator.h +48 -0
  16. metkitlib/include/metkit/codes/LibEccodes.h +38 -0
  17. metkitlib/include/metkit/codes/MallocCodesContent.h +46 -0
  18. metkitlib/include/metkit/codes/api/CodesAPI.h +365 -0
  19. metkitlib/include/metkit/codes/api/CodesTypes.h +93 -0
  20. metkitlib/include/metkit/codes/api/GeoIterator.h +104 -0
  21. metkitlib/include/metkit/codes/api/KeyIterator.h +187 -0
  22. metkitlib/include/metkit/config/LibMetkit.h +56 -0
  23. metkitlib/include/metkit/fields/FieldIndex.h +58 -0
  24. metkitlib/include/metkit/fields/FieldIndexList.h +40 -0
  25. metkitlib/include/metkit/fields/SimpleFieldIndex.h +41 -0
  26. metkitlib/include/metkit/hypercube/HyperCube.h +105 -0
  27. metkitlib/include/metkit/hypercube/HyperCubePayloaded.h +88 -0
  28. metkitlib/include/metkit/mars/BaseProtocol.h +95 -0
  29. metkitlib/include/metkit/mars/ClientTask.h +206 -0
  30. metkitlib/include/metkit/mars/DHSProtocol.h +106 -0
  31. metkitlib/include/metkit/mars/MarsExpandContext.h +42 -0
  32. metkitlib/include/metkit/mars/MarsExpansion.h +83 -0
  33. metkitlib/include/metkit/mars/MarsExpension.h +28 -0
  34. metkitlib/include/metkit/mars/MarsHandle.h +83 -0
  35. metkitlib/include/metkit/mars/MarsLanguage.h +106 -0
  36. metkitlib/include/metkit/mars/MarsLocation.h +100 -0
  37. metkitlib/include/metkit/mars/MarsParsedRequest.h +44 -0
  38. metkitlib/include/metkit/mars/MarsParser.h +70 -0
  39. metkitlib/include/metkit/mars/MarsRequest.h +198 -0
  40. metkitlib/include/metkit/mars/MarsRequestHandle.h +79 -0
  41. metkitlib/include/metkit/mars/Matcher.h +88 -0
  42. metkitlib/include/metkit/mars/Param.b +43 -0
  43. metkitlib/include/metkit/mars/Param.h +84 -0
  44. metkitlib/include/metkit/mars/ParamID.h +306 -0
  45. metkitlib/include/metkit/mars/Parameter.h +87 -0
  46. metkitlib/include/metkit/mars/Quantile.h +73 -0
  47. metkitlib/include/metkit/mars/RequestEnvironment.h +58 -0
  48. metkitlib/include/metkit/mars/StepRange.b +43 -0
  49. metkitlib/include/metkit/mars/StepRange.h +164 -0
  50. metkitlib/include/metkit/mars/StepRangeNormalise.h +95 -0
  51. metkitlib/include/metkit/mars/Type.h +265 -0
  52. metkitlib/include/metkit/mars/TypeAny.h +39 -0
  53. metkitlib/include/metkit/mars/TypeDate.h +42 -0
  54. metkitlib/include/metkit/mars/TypeEnum.h +67 -0
  55. metkitlib/include/metkit/mars/TypeExpver.h +40 -0
  56. metkitlib/include/metkit/mars/TypeFloat.h +41 -0
  57. metkitlib/include/metkit/mars/TypeInteger.h +55 -0
  58. metkitlib/include/metkit/mars/TypeLowercase.h +38 -0
  59. metkitlib/include/metkit/mars/TypeMixed.h +47 -0
  60. metkitlib/include/metkit/mars/TypeParam.h +45 -0
  61. metkitlib/include/metkit/mars/TypeRange.h +41 -0
  62. metkitlib/include/metkit/mars/TypeRegex.h +49 -0
  63. metkitlib/include/metkit/mars/TypeTime.h +44 -0
  64. metkitlib/include/metkit/mars/TypeToByList.h +137 -0
  65. metkitlib/include/metkit/mars/TypeToByListQuantile.h +41 -0
  66. metkitlib/include/metkit/mars/TypesFactory.h +92 -0
  67. metkitlib/include/metkit/metkit_config.h +26 -0
  68. metkitlib/include/metkit/metkit_ecbuild_config.h +72 -0
  69. metkitlib/include/metkit/metkit_version.h +30 -0
  70. metkitlib/include/metkit/pointdb/DataSource.h +91 -0
  71. metkitlib/include/metkit/pointdb/FieldIndexer.h +128 -0
  72. metkitlib/include/metkit/pointdb/GribDataSource.h +47 -0
  73. metkitlib/include/metkit/pointdb/GribFieldInfo.h +76 -0
  74. metkitlib/include/metkit/pointdb/GribHandleDataSource.h +58 -0
  75. metkitlib/include/metkit/pointdb/PointIndex.h +121 -0
  76. metkitlib/include/metkit/pointdb/bits.h +1834 -0
  77. metkitlib/include/metkit/pointdb/masks.h +22 -0
  78. metkitlib/include/metkit/tool/MetkitTool.h +79 -0
  79. metkitlib/lib64/cmake/metkit/metkit-config-version.cmake +43 -0
  80. metkitlib/lib64/cmake/metkit/metkit-config.cmake +112 -0
  81. metkitlib/lib64/cmake/metkit/metkit-import.cmake +14 -0
  82. metkitlib/lib64/cmake/metkit/metkit-targets-relwithdebinfo.cmake +46 -0
  83. metkitlib/lib64/cmake/metkit/metkit-targets.cmake +116 -0
  84. metkitlib/lib64/libmetkit.so +0 -0
  85. metkitlib/lib64/pkgconfig/metkit.pc +33 -0
  86. metkitlib/share/metkit/axis.yaml +63 -0
  87. metkitlib/share/metkit/bufr-subtypes.yaml +140 -0
  88. metkitlib/share/metkit/chemids.yaml +209 -0
  89. metkitlib/share/metkit/language.yaml +1707 -0
  90. metkitlib/share/metkit/modifiers.yaml +341 -0
  91. metkitlib/share/metkit/obstype.yaml +182 -0
  92. metkitlib/share/metkit/odb/marsrequest.yaml +9 -0
  93. metkitlib/share/metkit/param-matching.yaml +16 -0
  94. metkitlib/share/metkit/paramids.yaml +24034 -0
  95. metkitlib/share/metkit/params-static.yaml +212 -0
  96. metkitlib/share/metkit/params.yaml +9833 -0
  97. metkitlib/share/metkit/reportype.yaml +525 -0
  98. metkitlib/share/metkit/shortname-context.yaml +192 -0
  99. metkitlib-1.16.0.9.dist-info/METADATA +75 -0
  100. metkitlib-1.16.0.9.dist-info/RECORD +104 -0
  101. metkitlib-1.16.0.9.dist-info/WHEEL +5 -0
  102. metkitlib-1.16.0.9.dist-info/licenses/AUTHORS +12 -0
  103. metkitlib-1.16.0.9.dist-info/licenses/LICENSE +190 -0
  104. metkitlib-1.16.0.9.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1707 @@
1
+ ---
2
+ _field: &_field
3
+
4
+ style:
5
+ type: enum
6
+ values:
7
+ - [dissemination]
8
+
9
+ class:
10
+ category: data
11
+ defaults:
12
+ - vals: [od]
13
+ flatten: false
14
+ type: enum
15
+ values:
16
+ - [a5, ECMWF Atmospheric Composition reanalysis version 5]
17
+ - [ai, operational aifs]
18
+ - [at, austria]
19
+ - [be, belgium]
20
+ - [c3, c3s]
21
+ - [ce, cems]
22
+ - [ch, switzerland]
23
+ - [ci, cerise]
24
+ - [co, cosmo]
25
+ - [cr, cams research]
26
+ - [cs, ecsn]
27
+ - [d1, destine]
28
+ - [de, germany]
29
+ - [dk, denmark]
30
+ - [dm, demeter]
31
+ - [dt, dts]
32
+ - [e2, e20c]
33
+ - [e4, reanalyse40]
34
+ - [e6, era6]
35
+ - [ea, era5, esat]
36
+ - [ed, eerie]
37
+ - [ef, efas]
38
+ - [ei, era interim]
39
+ - [el, eldas]
40
+ - [em, e20cm]
41
+ - [en, ensembles]
42
+ - [ep, cera-20c, cera20c]
43
+ - [er, reanalyse]
44
+ - [es, spain]
45
+ - [et, cera-sat, cerasat]
46
+ - [fi, finland]
47
+ - [fr, france]
48
+ - [gf, glofas]
49
+ - [gg, greenhouse gases]
50
+ - [gr, greece]
51
+ - [gw, global wildfire information system]
52
+ - [hr, croatia]
53
+ - [hu, hungary]
54
+ - [ie, ireland]
55
+ - [is, iceland]
56
+ - [it, italy]
57
+ - [j5, jra55]
58
+ - [l5, era5l]
59
+ - [l6, era6l]
60
+ - [la, aladin-laef, laef, lace]
61
+ - [lw, WMO lead centre wave forecast verification]
62
+ - [ma, metaps]
63
+ - [mc, macc]
64
+ - [me, mersea]
65
+ - [ml, machine learning]
66
+ - [ms, member states]
67
+ - [ng, nextgems]
68
+ - [nl, netherlands]
69
+ - ['no', norway]
70
+ - [nr, ncep 20cr, 20cr]
71
+ - [o6, 'ocean 6 reanalysis']
72
+ - [od, operations]
73
+ - [pe, permanent experiment]
74
+ - [pt, portugal]
75
+ - [pv, provost]
76
+ - [rd, research]
77
+ - [rm, euro4m]
78
+ - [rr, regional reanalysis]
79
+ - [s2, s2s]
80
+ - [se, sweden]
81
+ - [si, slovenia]
82
+ - [sr, sreps]
83
+ - [te, test]
84
+ - [ti, tigge]
85
+ - [to, tost]
86
+ - [tr, turkey]
87
+ - [uk, united kingdom]
88
+ - [ul, ulysses]
89
+ - [ur, uerra]
90
+ - [yp, yopp]
91
+ - [yt, yotc]
92
+
93
+ type:
94
+ category: data
95
+ defaults:
96
+ - vals: [an]
97
+ flatten: false
98
+ type: enum
99
+ values:
100
+ - [3g, 3d variational gradients]
101
+ - [3v, 3d variational analysis]
102
+ - [4g, 4d variational gradients]
103
+ - [4i, 4d variational increments]
104
+ - [4v, 4d variational analysis]
105
+ - [ab, analysis bias]
106
+ - [af, analysis feedback]
107
+ - [ai, analysis input]
108
+ - [an, analysis]
109
+ - [as, adjoint singular vector]
110
+ - [bf, bias-corrected forecast]
111
+ - [cd, climate distribution]
112
+ - [cf, control forecast]
113
+ - [ci, clustering information]
114
+ - [cl, climatology]
115
+ - [cm, cluster means]
116
+ - [cr, cluster representative]
117
+ - [cs, cluster std deviations]
118
+ - [cv, calibration validation forecast]
119
+ - [ea, errors in analysis]
120
+ - [ed, empirical distribution]
121
+ - [ef, errors in first guess]
122
+ - [efi, extreme forecast index]
123
+ - [efic, extreme forecast index control]
124
+ - [em, ensemble mean]
125
+ - [eme, ensemble data assimilation model errors]
126
+ - [emtm, ensemble mean of temporal mean]
127
+ - [ep, event probability]
128
+ - [es, ensemble standard deviation]
129
+ - [est, ensemble statistics]
130
+ - [estdtm, ensemble standard deviation of temporal mean]
131
+ - [fa, forecast accumulation]
132
+ - [fb, feedback]
133
+ - [fc, forecast]
134
+ - [fcdfb, forecast departures feedback]
135
+ - [fcmax, forecast maximum]
136
+ - [fcmean, forecast mean]
137
+ - [fcmin, forecast minimum]
138
+ - [fcstdev, forecast standard deviation]
139
+ - [ff, flux forcing realtime]
140
+ - [fg, first guess]
141
+ - [fp, forecast probability]
142
+ - [fsoifb, forecast sensitivity to observations impact feedback]
143
+ - [fu, fill-up]
144
+ - [fx, flux forcing]
145
+ - [ga, gfas analysis]
146
+ - [gbf, bias-corrected gridbox]
147
+ - [gai, gridded analysis input]
148
+ - [go, gridded observations]
149
+ - [gsd, gridded satellite data]
150
+ - [gwt, weather type gridbox]
151
+ - [hcmean, hindcast mean]
152
+ - [ia, init. analysis]
153
+ - [icp, initial condition perturbation]
154
+ - [mpp, model physics perturbation]
155
+ - [if, interim forecast]
156
+ - [im, images]
157
+ - [me, model errors]
158
+ - [mfb, mondb feedback]
159
+ - [oai, odb analysis input]
160
+ - [ob, observations]
161
+ - [of, ocean forward]
162
+ - [ofa, odb feedback from analysis]
163
+ - [ofb, odb feedback]
164
+ - [oi, oi analysis]
165
+ - [oldim, old format images]
166
+ - [or, ocean reanalysis]
167
+ - [pa, perturbed analysis]
168
+ - [pb, probability boundary]
169
+ - [pd, probability distribution]
170
+ - [pf, perturbed forecast]
171
+ - [pfc, point values]
172
+ - [ppm, point value metrics]
173
+ - [s3, climate 30 days simulation]
174
+ - [ses, scaled ensemble standard deviation]
175
+ - [sf, sensitivity forecast]
176
+ - [sfb, summary feedback]
177
+ - [sfo, simulations with forcing]
178
+ - [sg, sensitivity gradient]
179
+ - [si, climate simulation]
180
+ - [sim, simulated images]
181
+ - [sot, shift of tails]
182
+ - [ssd, simulated satellite data]
183
+ - [sv, singular vector]
184
+ - [svar, signal variance]
185
+ - [taem, time average ensemble mean]
186
+ - [taes, time average ensemble standard deviation]
187
+ - [tpa, time processed analysis]
188
+ - [tf, trajectory forecast]
189
+ - [tu, tube]
190
+ - [wem, weighted ensemble mean]
191
+ - [wes, weighted ensemble standard deviation]
192
+ - [wp, weather parameters]
193
+
194
+ stream:
195
+ category: data
196
+ flatten: false
197
+ type: enum
198
+ values:
199
+ - [amap, analysis for multianalysis project]
200
+ - [ammc, melbourne]
201
+ - [cher, ch, chernobyl]
202
+ - [clte, climate, Climate run output]
203
+ - [clmn, climate-monthly, Climate run monthly means output]
204
+ - [cnrm, meteo france climate centre]
205
+ - [cwao, montreal]
206
+ - [dacl, daily climatology]
207
+ - [dacw, daily climatology wave]
208
+ - [dahc, daily archive hindcast]
209
+ - [dame]
210
+ - [dcda, atmospheric model (delayed cutoff)]
211
+ - [dcwv, wave model (delayed cutoff)]
212
+ - [edmm, ensemble data assimilation monthly means]
213
+ - [edmo, ensemble data assimilation monthly means of daily means]
214
+ - [edzw, offenbach]
215
+ - [eefh, extended ensemble forecast hindcast]
216
+ - [eefo, extended ensemble prediction system]
217
+ - [eehs, extended ensemble forecast hindcast statistics]
218
+ - [efas, european flood awareness system (efas)]
219
+ - [efcl, european flood awareness system (efas) climatology]
220
+ - [efhc, ensemble forecast hindcasts (obsolete)]
221
+ - [efho, ensemble forecast hindcast overlap]
222
+ - [efhs, ensemble forecast hindcast statistics]
223
+ - [efov, ensemble forecast overlap]
224
+ - [efrf, european flood awareness system (efas) reforecasts]
225
+ - [efse, european flood awareness system (efas) seasonal forecasts]
226
+ - [efsr, european flood awareness system (efas) seasonal reforecasts]
227
+ - [egrr, exeter, bracknell]
228
+ - [ehmm, combined multi-model hindcast monthly means]
229
+ - [elda, ensemble long window data assimilation]
230
+ - [enda, ensemble data assimilation]
231
+ - [enfh, ensemble forecast hindcasts]
232
+ - [enfo, ef, ensemble prediction system]
233
+ - [enwh, ensemble forecast wave hindcasts]
234
+ - [esmm, combined multi-model monthly means]
235
+ - [espd, ensemble supplementary data]
236
+ - [ewda, ensemble wave data assimilation]
237
+ - [ewhc, wave ensemble forecast hindcast (obsolete)]
238
+ - [ewho, ensemble forecast wave hindcast overlap]
239
+ - [ewla, ensemble wave long window data assimilation]
240
+ - [ewmm, ensemble wave data assimilation monthly means]
241
+ - [ewmo, ensemble wave data assimilation monthly means of daily means]
242
+ - [fgge, fg]
243
+ - [fsob, forecast sensitivity to observations]
244
+ - [fsow, forecast sensitivity to observations wave]
245
+ - [gfas, global fire assimilation system]
246
+ - [gfra, global fire assimilation system reanalysis]
247
+ - [kwbc, washington]
248
+ - [lfpw, paris, toulouse]
249
+ - [lwda, long window daily archive]
250
+ - [lwwv, long window wave]
251
+ - [ma, means archive]
252
+ - [maed, multianalysis ensemble data]
253
+ - [mawm, wave anomaly means]
254
+ - [mawv, multianalysis wave data]
255
+ - [mdfa, monthly means of daily forecast accumulations]
256
+ - [mfam, anomaly means]
257
+ - [mfaw, wave anomalies]
258
+ - [mfhm, hindcast means]
259
+ - [mfhw, monthly forecast hindcasts wave]
260
+ - [mfwm, wave real-time means]
261
+ - [mhwm, wave hindcast means]
262
+ - [mmaf, multi-model multi-annual forecast]
263
+ - [mmam, multi-model multi-annual forecast means]
264
+ - [mmaw, multi-model multi-annual forecast wave]
265
+ - [mmsa, multi-model seasonal forecast monthly anomalies]
266
+ - [mmsf, multi-model seasonal forecast]
267
+ - [mmwm, multi-model multi-annual forecast wave means]
268
+ - [mnfa, anomalies]
269
+ - [mnfc, real-time]
270
+ - [mnfh, hindcasts]
271
+ - [mnfm, real-time means]
272
+ - [mnfw, wave real-time]
273
+ - [mnth, mo, monthly, monthly means]
274
+ - [mnvr, monthly variance and covariance data using g. boer's step function]
275
+ - [moda, monthly means of daily means]
276
+ - [mofc, monthly forecast]
277
+ - [mofm, monthly forecast means]
278
+ - [monr, monthly means using g. boer's step function]
279
+ - [mpic, max plank institute]
280
+ - [msda, monthly standard deviation and covariance of daily means]
281
+ - [msdc, mv, monthly standard deviation and covariance]
282
+ - [msmm, multi-model seasonal forecast atmospheric monthly means]
283
+ - [mswm, multi-model seasonal forecast wave monthly means]
284
+ - [ocda, ocean data assimilation]
285
+ - [ocea, ocean]
286
+ - [olda, ocean Long window data assimilation]
287
+ - [oper, da, daily archive, atmospheric model]
288
+ - [rjtd, tokyo]
289
+ - [scda, atmospheric model (short cutoff)]
290
+ - [scwv, wave model (short cutoff)]
291
+ - [seap, sensitive area prediction]
292
+ - [seas, seasonal forecast]
293
+ - [sens, sf, sensitivity forecast]
294
+ - [sfmm, seasonal forecast atmospheric monthly means]
295
+ - [smma, seasonal monthly means anomalies]
296
+ - [sttd, Statistics of deterministic data]
297
+ - [stte, Statistics of ensemble data]
298
+ - [supd, sd, deterministic supplementary data]
299
+ - [swmm, seasonal forecast wave monthly means]
300
+ - [toga, tg]
301
+ - [ukmo, ukmo climate centre]
302
+ - [waef, we, wave ensemble forecast]
303
+ - [wamd, wave monthly means of daily means]
304
+ - [wamf, wave monthly forecast]
305
+ - [wamo, wave monthly means]
306
+ - [wams, multi-model seasonal forecast wave]
307
+ - [wasf, wave seasonal forecast]
308
+ - [wave, wv, wave model]
309
+ - [wavm, wave model (standalone)]
310
+ - [weef, wave extended ensemble forecast]
311
+ - [weeh, wave extended ensemble forecast hindcast]
312
+ - [wees, wave extended ensemble forecast hindcast statistics]
313
+ - [wehs, wave ensemble forecast hindcast statistics]
314
+ - [weov, wave ensemble forecast overlap]
315
+ - [wfas, global flood awareness system (glofas)]
316
+ - [wfcl, global flood awareness system (glofas) climatology]
317
+ - [wfrf, global flood awareness system (glofas) reforecasts]
318
+ - [wfse, global flood awareness system (glofas) seasonal forecasts]
319
+ - [wfsr, global flood awareness system (glofas) seasonal reforecasts]
320
+ - [wmfm, wave monthly forecast means]
321
+ - [wvhc, wave hindcast]
322
+
323
+ product:
324
+ category: data
325
+ type: enum
326
+ values:
327
+ - [inst, instantaneous]
328
+ - [tims, time-series]
329
+ - [tavg, time-average]
330
+ - [tacc, time-accumulation]
331
+
332
+ section:
333
+ category: data
334
+ type: enum
335
+ values:
336
+ - [h, horizontal]
337
+ - [v, vertical]
338
+ - [z, zonal]
339
+ - [m, meridional]
340
+
341
+ range:
342
+ category: data
343
+ type: any
344
+
345
+ use:
346
+ flatten: false
347
+ multiple: true
348
+ type: enum
349
+ values:
350
+ - [frequent, f]
351
+ - [infrequent, i]
352
+ - [normal, n]
353
+ - compare
354
+ - [monthly run]
355
+ - intent
356
+ - disk
357
+ # - [bc, boundary conditions]
358
+ # - [monday, mon]
359
+ # - [tuesday, tue]
360
+ # - [wednesday, wed]
361
+ # - [thursday, thu]
362
+ # - [friday, fri]
363
+ # - [saturday, sat]
364
+ # - [sunday, sun]
365
+
366
+ # product:
367
+ # %if LEVTYPE = DP
368
+ # %and TYPE = OR
369
+ # %and (%not PRODUCT)
370
+ # %then
371
+ # %warning "Default PRODUCT for Ocean ReAnalysis set to Instantaneous"
372
+ # %set PRODUCT = INST
373
+
374
+
375
+ expver:
376
+ category: data
377
+ flatten: false
378
+ type: expver
379
+ defaults:
380
+ - vals: ['0001']
381
+
382
+ dataset:
383
+ category: data
384
+ multiple: false
385
+ type:
386
+ - context:
387
+ class: [d1]
388
+ type: enum
389
+ values:
390
+ - [climate-dt, Climate change adaptation digital twin]
391
+ - [extremes-dt, Weather and geophysical extremes digital twin]
392
+ - [on-demand-climate-dt, On-demand climate change adaptation digital twin]
393
+ - [on-demand-extremes-dt, On-demand weather and geophysical extremes digital twin]
394
+ - type: lowercase
395
+
396
+ model:
397
+ category: data
398
+ type:
399
+ - context:
400
+ class: [ms]
401
+ country: [it]
402
+ type: enum
403
+ values:
404
+ - [lm]
405
+ - [hrm]
406
+ - [wam]
407
+ - type: enum
408
+ values:
409
+ - [ecmf]
410
+ - [edzw]
411
+ - [egrr]
412
+ - [lfpw]
413
+ - [kwbc]
414
+ - [none]
415
+ - [hrm]
416
+ - [ifs, IFS with no ocean model]
417
+ - [ifs-nemo, IFS with NEMO ocean model]
418
+ - [ifs-fesom, IFS with FESOM ocean model]
419
+ - [icon, ICON-A with ICON-O ocean model]
420
+ - [lisflood]
421
+ - [lm]
422
+ - [lam]
423
+ - [aifs]
424
+ - [aifs-single]
425
+ - [aifs-single-mse]
426
+ - [aifs-ens]
427
+ - [aifs-ens-crps]
428
+ - [aifs-ens-diff]
429
+ - [aifs-compo-single]
430
+ - [aifs-compo-ens]
431
+ - [aifs-compo-single-mse]
432
+ - [aifs-compo-ens-crps]
433
+ - [alaro]
434
+ - [arome]
435
+ - [harmonie-arome]
436
+ - [glob, global]
437
+ - [ecpoint]
438
+
439
+ georef:
440
+ category: data
441
+ type: lowercase
442
+
443
+ repres:
444
+ flatten: false
445
+ multiple: false
446
+ type: enum
447
+ values:
448
+ - [bu, 'bufr']
449
+ - [sh, 'spherical harmonics']
450
+ - [ll, 'lat long grid']
451
+ - [gg, 'gaussian grid']
452
+ - [sv, 'space view']
453
+ - [og, 'ocean grid']
454
+ - [np]
455
+ - [rl]
456
+
457
+ coeffindex:
458
+ category: data
459
+ multiple: true
460
+ type: to-by-list
461
+ by: 1
462
+ unset:
463
+ - context:
464
+ type:
465
+ op: '!'
466
+ vals: [me, eme]
467
+
468
+ obsgroup:
469
+ category: data
470
+ multiple: true
471
+ type: enum
472
+ values:
473
+ # - [conventional]
474
+ - [sat, satellite]
475
+ - [ers1]
476
+ - [trmm]
477
+ - [qscat]
478
+ - [reo3] # reo3 needs to stay for compatibility
479
+ # previously in "obsgroups.def"
480
+ - [hirs, 1]
481
+ - [amsua, 2]
482
+ - [amsub, 3]
483
+ - [mhs, 4]
484
+ - [geos, 5]
485
+ - [resat, 6]
486
+ - [meris, 7]
487
+ - [gpsro, 8]
488
+ - [satob, 9]
489
+ - [scatt, 10]
490
+ - [ssmi_as, 11, SSMI ALL-SKY]
491
+ - [iasi, 12]
492
+ - [airs, 13]
493
+ - [ssmis_as, 14, SSMIS ALL-SKY]
494
+ - [tmi_as, 15, TMI ALL-SKY]
495
+ - [amsre_as, 16, AMSRE ALL-SKY]
496
+ - [conv, 17]
497
+ - [smos, 19]
498
+ - [windsat_as, 20, WINDSAT ALL-SKY]
499
+ - [ssmi, 21]
500
+ - [amsua_as, 22, AMSUA ALL-SKY]
501
+ - [amsre, 23]
502
+ - [tmi, 24]
503
+ - [ssmis, 25]
504
+ - [gbrad, 26]
505
+ - [mwhs, 27]
506
+ - [mwts, 28]
507
+ - [mwri_as, 29, MWRI ALL-SKY]
508
+ - [iras, 30]
509
+ - [msu, 31]
510
+ - [ssu, 32]
511
+ - [vtpr1, 33]
512
+ - [vtpr2, 34]
513
+ - [atms, 35]
514
+ - [resat_ak, 36, RESAT AVERAGING KERNELS]
515
+ - [cris, 37]
516
+ - [wave_ip, 38, WAVE INTEGRATED PARAMETERS]
517
+ - [wave_sp, 39, WAVE SPECTRA]
518
+ - [raingg, 40]
519
+ - [sfc_ms, 41, SURFACE MULTISENSOR]
520
+ - [amsr2_as, 42, AMSR-2 ALL-SKY]
521
+ - [saphir_as, 43, SAPHIR ALL-SKY]
522
+ - [amsub_as, 44, AMSUB ALL-SKY]
523
+ - [mhs_as, 45, MHS ALL-SKY]
524
+ - [dwl, 46, DOPPLER WIND LIDAR]
525
+ - [iris, 47]
526
+ - [alt, 48, Altimeter]
527
+ - [aatsr, 49]
528
+ - [atms_as, 50, ATMS ALL-SKY]
529
+ - [gmi_as, 51, GMI ALL-SKY]
530
+ - [godae_sst, 52, GODAE SEA SURFACE TEMPERATURES]
531
+ - [atovs_ms, 53, ATOVS MULTISENSOR]
532
+ - [atmospheric_composition, 54, ATMOSPHERIC COMPOSITION]
533
+ - [non_sfc_ms, 55, NON-SURFACE MULTISENSOR]
534
+ - [mwts2, 56]
535
+ - [ssmi_1d, 57, SSMI 1DVAR TCWV CLOUDY-SKY]
536
+ - [mwhs2_as, 58, MWHS2 ALL-SKY]
537
+ - [ssmt2, 59]
538
+ - [smap, 60]
539
+ - [tovs_ms, 61, TOVS MULTISENSOR]
540
+ - [cloud_r, 62, CLOUD REFLECTIVITY]
541
+ - [cloud_l, 63, CLOUD LIDAR]
542
+ - [satellite_lightning, 64, SATELLITE LIGHTNING]
543
+ - [geos_vis, 65, GEOS VIS]
544
+ - [oconv, 66]
545
+ - [mwts3_as, 67, MWTS3 All-sky]
546
+ - [giirs, 68]
547
+ - [hiras, 69]
548
+ - [tropics_as, 70, TROPICS All-sky]
549
+ - [ssmt1, 71]
550
+ - [ssmt1_as, 72, SSMT1 All-sky]
551
+ - [mws_as, 73, MWS All-sky]
552
+ - [mwiici_as, 74, MWIICI All-sky]
553
+ - [aws_as, 75, AWS All-sky]
554
+ - [leos_vis, 76, LEOS VIS]
555
+ - [ssh, 77]
556
+ - [sirs, 78]
557
+ - [scr, 79]
558
+ - [scams_as, 80, SCAMS All-sky]
559
+ - [nems_as, 81, NEMS All-sky]
560
+ - [amsr3_as, 82, AMSR-3 All-sky]
561
+ - [irs, 83]
562
+ - [iasi_ng, 84, IASI-NG]
563
+ - [smap_as, 85, SMAP All-sky]
564
+ - [ssmt2_as, 86, SSMT2 All-sky]
565
+ - [test, 99]
566
+
567
+ reportype:
568
+ category: data
569
+ type: any
570
+ multiple: true
571
+
572
+ # rdbprefix
573
+
574
+ levtype:
575
+ category: data
576
+ aliases: [levtyp]
577
+ defaults:
578
+ - vals: [pl]
579
+ flatten: false
580
+ type: [enum, integer]
581
+ values:
582
+ - [cat, category]
583
+ - [dp, depth]
584
+ - [layer]
585
+ - [al, abstract levels]
586
+ - [ml, model levels]
587
+ - [pl, pressure levels]
588
+ - [hl, height levels]
589
+ - [pt, potential temperature]
590
+ - [pv, potential vorticity]
591
+ - [sfc, surf, surface] # sl ??
592
+ - [sol, surface other (multi)levels]
593
+ - [wv, ocean wave]
594
+ - [o2d, ocean surface]
595
+ - [o3d, ocean model levels]
596
+
597
+
598
+ levelist:
599
+ category: data
600
+ aliases: [leve,level,levellist]
601
+ multiple: true
602
+ type: to-by-list-float
603
+ by: 1
604
+
605
+ param:
606
+ category: data
607
+ aliases: [parameter,parameters]
608
+ multiple: true
609
+ type: param
610
+ defaults:
611
+ - vals: [129]
612
+
613
+ chem:
614
+ category: data
615
+ multiple: true
616
+ type: enum
617
+ values: "chemids.yaml"
618
+
619
+ wavelength:
620
+ category: data
621
+ multiple: true
622
+ type: range
623
+ default: none
624
+
625
+ timespan:
626
+ category: data
627
+ type: enum
628
+ values:
629
+ - [fs, from-start, fromstart]
630
+ - [30m]
631
+ - [1h]
632
+ - [3h]
633
+ - [6h]
634
+ - [12h]
635
+ - [18h]
636
+ - [24h]
637
+ - [48h]
638
+ - [72h]
639
+ - [120h]
640
+ - [168h]
641
+ - [240h]
642
+ - [360h]
643
+ - [none, inst, instantaneous]
644
+ default: none
645
+ multiple: false
646
+
647
+ stattype:
648
+ category: data
649
+ type: enum
650
+ values:
651
+ - [moav, monthly average]
652
+ - [momn, monthly minimum]
653
+ - [momx, monthly maximum]
654
+ - [mosd, monthly standard-deviation]
655
+ - [daac, daily accumulation]
656
+ - [daav, daily average]
657
+ - [damn, daily minimum]
658
+ - [damx, daily maximum]
659
+ - [dasd, daily standard-deviation]
660
+ - [moav_daav, monthly average of daily average]
661
+ - [moav_damn, monthly average of daily minimum]
662
+ - [moav_damx, monthly average of daily maximum]
663
+ - [moav_dasd, monthly average of daily standard-deviation]
664
+ - [momn_daav, monthly minimum of daily average]
665
+ - [momn_damn, monthly minimum of daily minimum]
666
+ - [momn_damx, monthly minimum of daily maximum]
667
+ - [momn_dasd, monthly minimum of daily standard-deviation]
668
+ - [momx_daav, monthly maximum of daily average]
669
+ - [momx_damn, monthly maximum of daily minimum]
670
+ - [momx_damx, monthly maximum of daily maximum]
671
+ - [momx_dasd, monthly maximum of daily standard-deviation]
672
+ - [mosd_daav, monthly standard-deviation of daily average]
673
+ - [mosd_damn, monthly standard-deviation of daily minimum]
674
+ - [mosd_damx, monthly standard-deviation of daily maximum]
675
+ - [mosd_dasd, monthly standard-deviation of daily standard-deviation]
676
+ multiple: false
677
+
678
+ #################################################################
679
+
680
+ # year
681
+ # decade
682
+ # month
683
+
684
+ date:
685
+ category: data
686
+ multiple: true
687
+ type: date
688
+ by: 1
689
+ defaults:
690
+ - vals: [-1]
691
+
692
+ year:
693
+ category: data
694
+ type: to-by-list
695
+ multiple: true
696
+ by: 1
697
+
698
+ month:
699
+ category: data
700
+ flatten: true
701
+ type: enum
702
+ multiple: true
703
+ values:
704
+ - [1, jan, january]
705
+ - [2, feb, february]
706
+ - [3, mar, march]
707
+ - [4, apr, april]
708
+ - [5, may]
709
+ - [6, jun, june]
710
+ - [7, jul, july]
711
+ - [8, aug, august]
712
+ - [9, sep, september]
713
+ - [10, oct, october]
714
+ - [11, nov, november]
715
+ - [12, dec, december]
716
+
717
+ hdate:
718
+ category: data
719
+ multiple: true
720
+ type: date
721
+
722
+ offsetdate:
723
+ category: data
724
+ multiple: true
725
+ type: date
726
+
727
+ fcmonth:
728
+ category: data
729
+ multiple: true
730
+ by: 1
731
+ type: to-by-list
732
+
733
+ fcperiod:
734
+ category: data
735
+ multiple: true
736
+ type: any
737
+
738
+ time:
739
+ category: data
740
+ multiple: true
741
+ type: time
742
+ by: 6h
743
+ defaults:
744
+ - vals: ['1200']
745
+
746
+ offsettime:
747
+ category: data
748
+ multiple: true
749
+ type: time
750
+
751
+ leadtime:
752
+ category: data
753
+ multiple: true
754
+ type: any
755
+
756
+ opttime:
757
+ category: data
758
+ multiple: true
759
+ type: any
760
+
761
+ step:
762
+ category: data
763
+ multiple: true
764
+ by: 12
765
+ type: range
766
+ defaults:
767
+ - vals: [0]
768
+
769
+ anoffset:
770
+ category: data
771
+ multiple: true
772
+ type: integer
773
+
774
+ reference:
775
+ category: data
776
+ multiple: true
777
+ type: integer
778
+
779
+ #################################################################
780
+
781
+ # cluster
782
+ # probability
783
+
784
+ number:
785
+ category: data
786
+ multiple: true
787
+ type: to-by-list
788
+ by: 1
789
+
790
+ quantile:
791
+ category: data
792
+ multiple: true
793
+ type: to-by-list-quantile
794
+ denominators: [2,3,4,5,10,100,1000]
795
+ by: 1
796
+
797
+ domain:
798
+ category: data
799
+ type:
800
+ - context:
801
+ class: [ms]
802
+ country: [it]
803
+ type: enum
804
+ values:
805
+ - [italy]
806
+ - [euroatl]
807
+ - [europe]
808
+ - [mediterranean]
809
+ - type: enum
810
+ flatten: false
811
+ type: enum
812
+ values:
813
+ - [a, north west europe]
814
+ - [b, north east europe, baltic and black sea]
815
+ - [c, south west europe]
816
+ - [d, south east europe]
817
+ - [e, europe]
818
+ - [f, fastex]
819
+ - [g, globe, general european area]
820
+ - [h]
821
+ - [i]
822
+ - [j]
823
+ - [k]
824
+ - [l]
825
+ - [m, mediterranean]
826
+ - ['n', northern hemisphere]
827
+ - [o]
828
+ - [p]
829
+ - [q]
830
+ - [r]
831
+ - [s, southern hemisphere]
832
+ - [t, tropics]
833
+ - [u, tropics 2]
834
+ - [v]
835
+ - [w, western atlantic]
836
+ - [x]
837
+ - ['y']
838
+ - [z]
839
+
840
+
841
+ bcmodel:
842
+ category: data
843
+ type:
844
+ - context:
845
+ class: [ms]
846
+ country: [it]
847
+ type: enum
848
+ values:
849
+ - [gme]
850
+ - [ifs]
851
+
852
+ icmodel:
853
+ category: data
854
+ type:
855
+ - context:
856
+ class: [ms]
857
+ country: [it]
858
+ type: enum
859
+ values:
860
+ - [gme]
861
+ - [ifs]
862
+ - [mvoi]
863
+ - [nudging]
864
+ - [3dvar]
865
+
866
+ country:
867
+ category: data
868
+ multiple: false
869
+ type:
870
+ - context:
871
+ class: [ms]
872
+ type: enum
873
+ values:
874
+ - [it]
875
+ - [de]
876
+
877
+ grib:
878
+ category: data
879
+ multiple: false
880
+ type:
881
+ - context:
882
+ class: [ms]
883
+ country: [it]
884
+ type: enum
885
+ values:
886
+ - [original]
887
+ - [ecmwf]
888
+
889
+ frequency:
890
+ category: data
891
+ multiple: true
892
+ by: 1
893
+ type: to-by-list
894
+
895
+ direction:
896
+ category: data
897
+ multiple: true
898
+ by: 1
899
+ type: to-by-list
900
+
901
+ diagnostic:
902
+ category: data
903
+ type: integer
904
+ multiple: true
905
+
906
+ iteration:
907
+ category: data
908
+ type: integer
909
+ multiple: true
910
+
911
+ channel:
912
+ category: data
913
+ type: integer
914
+ multiple: true
915
+ # TODO : Migration from old images to new images
916
+
917
+ ident:
918
+ category: data
919
+ type: integer
920
+ multiple: true
921
+
922
+ instrument:
923
+ category: data
924
+ type: integer
925
+ multiple: true
926
+ # TODO : Migration from old images to new images
927
+
928
+ method:
929
+ category: data
930
+ type: integer
931
+
932
+ origin:
933
+ category: data
934
+ multiple: true
935
+ type: enum
936
+ values:
937
+ - [aladinhuneps-omsz-eu]
938
+ - [aladinlaef-zamg-eu]
939
+ - [ammc, 1, melbourne]
940
+ - [anso]
941
+ - [aromeeps-mf-eu]
942
+ - [babj, 38, beijing]
943
+ - [cmcc]
944
+ - [cnmc, 80]
945
+ - [consensus, 255]
946
+ - [cosmo]
947
+ - [cosmodeeps-dwd-eu]
948
+ - [cosmoleps-arpasimc-eu]
949
+ - [crfc, 239, cerfacs]
950
+ - [cwao, 54, montreal]
951
+ - [dems]
952
+ - [ecmf, 98, ecmwf]
953
+ - [ecmf_ea, ecmwf_ea]
954
+ - [ecmf_od, ecmwf_od]
955
+ - [edzw, dwd, 78, offenbach]
956
+ - [egrr, 74, exeter, bracknell]
957
+ - [ekmi]
958
+ - [enmi, 88, oslo]
959
+ - [eswi]
960
+ - [fapr]
961
+ - [fnmo, fnmoc, 58, fleet numerical]
962
+ - [fr-ms-ec]
963
+ - [glameps-hirlamcons-eu]
964
+ - [hadc, 247, hadley centre]
965
+ - [hirlam-dmi-eu]
966
+ - [ifmk, 246]
967
+ - [ingv, 235]
968
+ - [isac]
969
+ - [knmi, 245]
970
+ - [kwbc, 7, washington]
971
+ - [lemm, 214, madrid]
972
+ - [lfpw, 84, 85, paris, toulouse]
973
+ - [lops]
974
+ - [mogreps-mo-eua]
975
+ - [nasa]
976
+ - [niwa]
977
+ - [no-ar-ce]
978
+ - [no-ar-cw]
979
+ - [no-ar-pa]
980
+ - [nzkl]
981
+ - [pearp-mf-eu]
982
+ - [rjtd, 34, tokyo]
983
+ - [rksl, 40, seoul]
984
+ - [rums]
985
+ - [sabm]
986
+ - [sbsj, 46, cptec]
987
+ - [se-al-ec]
988
+ - [sreps-aemet-eua]
989
+ - [srnwppeps-dwd-eua]
990
+ - [vabb]
991
+ - [vuwien, 244, university of vienna]
992
+
993
+ system:
994
+ category: data
995
+ type: integer
996
+
997
+ #######################################################################
998
+ # DestinE ClimateDT related keywords
999
+
1000
+ activity:
1001
+ category: data
1002
+ type: enum
1003
+ values:
1004
+ - [cmip6, Coupled Model Intercomparison Project Phase 6]
1005
+ - [scenariomip, Scenario Model Intercomparison Project]
1006
+ - [highresmip, High Resolution Model Intercomparison Project]
1007
+ - [story-nudging, Climate storylines by nudging to reanalysis]
1008
+ - [baseline, Baseline simulations for climate model evaluation]
1009
+ - [projections, Future climate projections]
1010
+
1011
+
1012
+ experiment:
1013
+ category: data
1014
+ type: enum
1015
+ values:
1016
+ - [hist, Historical]
1017
+ - [cont, Control]
1018
+ - [amip, Atmospheric Model Intercomparison Project]
1019
+ - [ssp1-1.9, Shared Socio-economic Pathways 1-1.9]
1020
+ - [ssp1-2.6, Shared Socio-economic Pathways 1-2.6]
1021
+ - [ssp2-4.5, Shared Socio-economic Pathways 2-4.5]
1022
+ - [ssp3-7.0, Shared Socio-economic Pathways 3-7.0]
1023
+ - [ssp5-8.5, Shared Socio-economic Pathways 5-8.5]
1024
+ - [tplus1.5k, Warmer world at 1.5 degrees K above pre-industrial temperatures]
1025
+ - [tplus2.0k, Warmer world at 2.0 degrees K above pre-industrial temperatures]
1026
+ - [tplus3.0k, Warmer world at 3.0 degrees K above pre-industrial temperatures]
1027
+ - [tplus4.0k, Warmer world at 4.0 degrees K above pre-industrial temperatures]
1028
+ - [abrupt4xco2, CO2 abruptly quadrupled and then held constant]
1029
+
1030
+ generation:
1031
+ category: data
1032
+ type: integer
1033
+
1034
+ realization:
1035
+ category: data
1036
+ type: integer
1037
+
1038
+ resolution:
1039
+ category: data
1040
+ type: enum
1041
+ values:
1042
+ - [standard, Standard resolution model output with longer availability]
1043
+ - [high, High resolution model output with limited availability]
1044
+
1045
+ # - product
1046
+ # - section
1047
+ # - refdate
1048
+ # - latitude
1049
+ # - longitude
1050
+ # - range
1051
+
1052
+ #######################################################################
1053
+
1054
+ _observation: &_observation
1055
+
1056
+ obstype:
1057
+ category: data
1058
+ multiple: true
1059
+ defaults:
1060
+ - context:
1061
+ _verb: [retrieve]
1062
+ type: [ob]
1063
+ vals: [1]
1064
+ type: enum
1065
+ values: "obstype.yaml"
1066
+ # TODO : Migration from old images to new images
1067
+
1068
+ range:
1069
+ category: data
1070
+ type: any
1071
+
1072
+ latitude:
1073
+ category: data
1074
+ type: any
1075
+
1076
+ longitude:
1077
+ category: data
1078
+ type: any
1079
+
1080
+ # type: [im]
1081
+ # obstype: [=0 %and (ident=52 %or ident=53 %or ident=54)) %then
1082
+ # %warning "replacing obstype=0 by channel=2, instrument=205"
1083
+ # %unset obstype
1084
+ # %set channel = 2
1085
+ # %set instrument = 205
1086
+
1087
+ # %if (type=im %and obstype=10 %and (ident=52 %or ident=53 %or ident=54)) %then
1088
+ # %warning "replacing obstype=10 by channel=3, instrument=205"
1089
+ # %unset obstype
1090
+ # %set channel = 3
1091
+ # %set instrument = 205
1092
+
1093
+ # %if (type=im %and obstype=20 %and (ident=52 %or ident=53 %or ident=54)) %then
1094
+ # %warning "replacing obstype=10 by channel=1, instrument=205"
1095
+ # %unset obstype
1096
+ # %set channel = 1
1097
+ # %set instrument = 205
1098
+
1099
+ # # goes
1100
+ # %if (type=im %and obstype=0 %and (ident=252 %or ident=253 %or ident=254 %or ident=255 %or ident=256)) %then
1101
+ # %warning "replacing obstype=0 by channel=4, instrument=615"
1102
+ # %unset obstype
1103
+ # %set channel = 4
1104
+ # %set instrument = 615
1105
+
1106
+ # %if (type=im %and obstype=10 %and (ident=252 %or ident=253 %or ident=254 %or ident=255 %or ident=256)) %then
1107
+ # %warning "replacing obstype=10 by channel=1, instrument=615"
1108
+ # %unset obstype
1109
+ # %set channel = 1
1110
+ # %set instrument = 615
1111
+
1112
+ # %if (type=im %and obstype=20 %and (ident=252 %or ident=253 %or ident=254 %or ident=255 %or ident=256)) %then
1113
+ # %warning "replacing obstype=20 by channel=3, instrument=615"
1114
+ # %unset obstype
1115
+
1116
+ #######################################################################
1117
+
1118
+ _postproc: &_postproc
1119
+
1120
+ accuracy:
1121
+ category: postproc
1122
+ flatten: false
1123
+ type: [enum, integer]
1124
+ values:
1125
+ - [av, archived value]
1126
+ - ['n', normal, auto]
1127
+ - [r, reduced]
1128
+ - [l, low]
1129
+
1130
+ bitmap:
1131
+ category: postproc
1132
+ flatten: false
1133
+ type: any
1134
+
1135
+ format:
1136
+ category: postproc
1137
+ flatten: false
1138
+ type: enum
1139
+ values:
1140
+ - [grib1, grib, gb, grib edition 1]
1141
+ - [grib2, grib edition 2]
1142
+ - [bufr, bf]
1143
+ - [grid, gd]
1144
+ - [netcdf]
1145
+ - [odb]
1146
+ - [ascii]
1147
+ - [p, packed]
1148
+ - [u, unpacked]
1149
+
1150
+ frame:
1151
+ category: postproc
1152
+ type: integer
1153
+
1154
+ gaussian:
1155
+ category: postproc
1156
+ type: enum
1157
+ values:
1158
+ - reduced
1159
+ - regular
1160
+
1161
+ area:
1162
+ category: postproc
1163
+ flatten: false
1164
+ multiple: true
1165
+ type: [float, enum]
1166
+ values:
1167
+ - [g, global]
1168
+ - [e, europe]
1169
+
1170
+ grid:
1171
+ category: postproc
1172
+ flatten: false
1173
+ multiple: true
1174
+ type: [enum, regex, float]
1175
+ values:
1176
+ - auto
1177
+ - [av, archived value]
1178
+ - [F16, 16]
1179
+ - [F24, 24]
1180
+ - [F32, 32]
1181
+ - [F48, 48]
1182
+ - [F64, 64]
1183
+ - [F80, 80]
1184
+ - [F96, 96]
1185
+ - [F128, 128]
1186
+ - [F160, 160]
1187
+ - [F192, 192]
1188
+ - [F200, 200]
1189
+ - [F256, 256]
1190
+ - [F320, 320]
1191
+ - [F400, 400]
1192
+ - [F512, 512]
1193
+ - [F576, 576]
1194
+ - [F640, 640]
1195
+ - [F800, 800]
1196
+ - [F912, 912]
1197
+ - [F1024, 1024]
1198
+ - [F1280, 1280]
1199
+ - [F1600, 1600]
1200
+ - [F2000, 2000]
1201
+ - [F2560, 2560]
1202
+ - [F4000, 4000]
1203
+ - [F8000, 8000]
1204
+ regex:
1205
+ - '^[oOfF][1-9][0-9]*$'
1206
+ - '^[nN](32|48|64|80|96|128|160|200|256|320|400|512|640|800|1024|1280|8000)$'
1207
+ - '^[hH][rRnN]?(1|2|4|8|16|32|64|128|256|512|1024|2048|4096|8192)$'
1208
+ uppercase: true
1209
+
1210
+ interpolation:
1211
+ category: postproc
1212
+ flatten: false
1213
+ type: enum
1214
+ values:
1215
+ - [linear]
1216
+ - [bilinear]
1217
+ - [nearest-lsm, nlsm, nearest lsm]
1218
+ - [nearest-neighbour, nn, nearest neighbour]
1219
+ - [grid-box-average, average]
1220
+
1221
+ packing:
1222
+ category: postproc
1223
+ flatten: false
1224
+ type: enum
1225
+ values:
1226
+ - [so, second order]
1227
+ - [av]
1228
+ - [complex, co]
1229
+ - [simple, si]
1230
+ - [ccsds]
1231
+
1232
+ resol:
1233
+ category: postproc
1234
+ flatten: false
1235
+ type: [enum, integer]
1236
+ values:
1237
+ - [av, archived value]
1238
+ - [auto, automatic resolution]
1239
+ - [N128, reduced gaussian 128]
1240
+ - [N200, reduced gaussian 200]
1241
+
1242
+ rotation:
1243
+ category: postproc
1244
+ flatten: false
1245
+ multiple: true
1246
+ type: float
1247
+
1248
+ intgrid:
1249
+ category: postproc
1250
+ flatten: false
1251
+ type: [enum, regex]
1252
+ values:
1253
+ - auto
1254
+ - N32
1255
+ - N48
1256
+ - N64
1257
+ - N80
1258
+ - N96
1259
+ - N128
1260
+ - N160
1261
+ - N192
1262
+ - N200
1263
+ - N256
1264
+ - N320
1265
+ - N400
1266
+ - N512
1267
+ - N640
1268
+ - N800
1269
+ - N912
1270
+ - N1024
1271
+ - N1280
1272
+ regex:
1273
+ - '^[oOfFhH][1-9][0-9]+$'
1274
+
1275
+ truncation:
1276
+ category: postproc
1277
+ flatten: false
1278
+ type: [enum, integer]
1279
+ values:
1280
+ - auto
1281
+ - none
1282
+
1283
+ process:
1284
+ category: postproc
1285
+ flatten: false
1286
+ type: enum
1287
+ values:
1288
+ - local
1289
+ - server
1290
+
1291
+ #######################################################################
1292
+
1293
+ _obspproc: &_obspproc
1294
+
1295
+ filter:
1296
+ type: any
1297
+ category: postproc
1298
+
1299
+ ident:
1300
+ type: any
1301
+ category: postproc
1302
+
1303
+ #######################################################################
1304
+
1305
+ disseminate:
1306
+ <<: *_field
1307
+ <<: *_postproc
1308
+
1309
+ requirements:
1310
+ type: any
1311
+
1312
+ resol:
1313
+ category: postproc
1314
+ type: any
1315
+
1316
+ # repres:
1317
+ # category: postproc
1318
+ # type: any
1319
+
1320
+ day:
1321
+ category: postproc
1322
+ multiple: true
1323
+ type: to-by-list
1324
+ by: 1
1325
+ range: [1, 31]
1326
+
1327
+ use:
1328
+ category: sink
1329
+ flatten: false
1330
+ multiple: true
1331
+ type: enum
1332
+ values:
1333
+ # - [frequent, f]
1334
+ # - [infrequent, i]
1335
+ # - [normal, n]
1336
+ # - compare
1337
+ # - [monthly run]
1338
+ # - intent
1339
+ # - disk
1340
+ - [bc, boundary conditions]
1341
+ - [monday, mon]
1342
+ - [tuesday, tue]
1343
+ - [wednesday, wed]
1344
+ - [thursday, thu]
1345
+ - [friday, fri]
1346
+ - [saturday, sat]
1347
+ - [sunday, sun]
1348
+
1349
+ option:
1350
+ category: sink
1351
+ default: normal
1352
+ flatten: false
1353
+ multiple: true
1354
+ type: enum
1355
+ values:
1356
+ - normal
1357
+ - delay
1358
+ - asap
1359
+ - gts
1360
+ - opendata
1361
+
1362
+ compatibility:
1363
+ category: postproc
1364
+ flatten: false
1365
+ multiple: true
1366
+ type: enum
1367
+ values:
1368
+ - 'no-local-extension'
1369
+ - 'adjust-spectral-packing'
1370
+
1371
+ priority:
1372
+ category: sink
1373
+ flatten: false
1374
+ type: integer
1375
+
1376
+ target:
1377
+ category: sink
1378
+ flatten: false
1379
+ type: any
1380
+
1381
+ filename:
1382
+ category: sink
1383
+ flatten: false
1384
+ type: any
1385
+
1386
+ ##############################################################
1387
+
1388
+ archive:
1389
+
1390
+ <<: *_field
1391
+ <<: *_observation
1392
+
1393
+ resol:
1394
+ category: postproc
1395
+ type: any
1396
+
1397
+ # repres:
1398
+ # category: postproc
1399
+ # type: any
1400
+
1401
+ database:
1402
+ flatten: false
1403
+ multiple: true
1404
+ type: any
1405
+ # TODO set
1406
+
1407
+ source:
1408
+ category: sink
1409
+ flatten: false
1410
+ multiple: true
1411
+ type: any
1412
+
1413
+ sourcebase:
1414
+ category: sink
1415
+ flatten: false
1416
+ multiple: true
1417
+ type: any
1418
+
1419
+ expect:
1420
+ category: sink
1421
+ flatten: false
1422
+ multiple: false
1423
+ type: [enum, integer]
1424
+ values:
1425
+ - any
1426
+
1427
+ disp:
1428
+ category: sink
1429
+ flatten: false
1430
+ multiple: false
1431
+ type: enum
1432
+ values:
1433
+ - [n, new]
1434
+ - [old]
1435
+ - [remove]
1436
+ - [fail]
1437
+
1438
+ _clear_defaults: [step]
1439
+
1440
+ ##############################################################
1441
+
1442
+ retrieve:
1443
+ _aliases: [r, ret, retr]
1444
+
1445
+ <<: *_field
1446
+ <<: *_observation
1447
+ <<: *_postproc
1448
+ <<: *_obspproc
1449
+
1450
+ target:
1451
+ category: sink
1452
+ flatten: false
1453
+ multiple: true
1454
+ type: any
1455
+
1456
+ source:
1457
+ category: sink
1458
+ flatten: false
1459
+ multiple: true
1460
+ type: any
1461
+
1462
+ expect:
1463
+ category: sink
1464
+ flatten: false
1465
+ multiple: false
1466
+ type: [enum, integer]
1467
+ values:
1468
+ - any
1469
+
1470
+ fieldset:
1471
+ category: sink
1472
+ aliases: [field]
1473
+ flatten: false
1474
+ multiple: false
1475
+ type: any
1476
+
1477
+ database:
1478
+ category: sink
1479
+ flatten: false
1480
+ multiple: true
1481
+ aliases: [dbase]
1482
+ type: any
1483
+
1484
+ optimise:
1485
+ category: sink
1486
+ type: enum
1487
+ values:
1488
+ - 'on'
1489
+ - 'off'
1490
+ defaults:
1491
+ - vals: ["off"]
1492
+
1493
+ duplicates:
1494
+ category: sink
1495
+ defaults:
1496
+ - context:
1497
+ _verb: [retrieve]
1498
+ type: [ob]
1499
+ vals: [keep]
1500
+ type: enum
1501
+ values:
1502
+ - keep
1503
+ - remove
1504
+
1505
+ padding:
1506
+ category: sink
1507
+ flatten: false
1508
+ type: enum
1509
+ defaults:
1510
+ - context:
1511
+ _verb: [retrieve]
1512
+ class: [ti]
1513
+ vals: [0]
1514
+ values:
1515
+ - [0, none, n]
1516
+ - [auto, automatic]
1517
+
1518
+ ##############################################################
1519
+
1520
+ read:
1521
+
1522
+ source:
1523
+ category: sink
1524
+ flatten: false
1525
+ multiple: true
1526
+ type: any
1527
+
1528
+ <<: *_field
1529
+ <<: *_observation
1530
+ <<: *_postproc
1531
+ <<: *_obspproc
1532
+
1533
+ target:
1534
+ category: sink
1535
+ flatten: false
1536
+ multiple: true
1537
+ type: any
1538
+
1539
+ fieldset:
1540
+ category: sink
1541
+ aliases: [field]
1542
+ flatten: false
1543
+ multiple: false
1544
+ type: any
1545
+
1546
+ _clear_defaults: [class, date, domain, expver, levelist, levtype, param, step, stream, time, type]
1547
+
1548
+ _options:
1549
+ param:
1550
+ # expand_with: # In case not type/stream/levtype is provided
1551
+ # type: an
1552
+ # stream: oper
1553
+ # levtype: pl
1554
+ first_rule: true
1555
+ ##############################################################
1556
+
1557
+
1558
+ flush:
1559
+
1560
+ <<: *_field
1561
+ <<: *_observation
1562
+ <<: *_postproc
1563
+ <<: *_obspproc
1564
+
1565
+ wait:
1566
+ flatten: false
1567
+ multiple: false
1568
+ type: enum
1569
+ values:
1570
+ - [true, yes, y, on, 1]
1571
+ - [false, no, n, off, 0]
1572
+
1573
+ decache:
1574
+ flatten: false
1575
+ multiple: false
1576
+ type: enum
1577
+ values:
1578
+ - [true, yes, y, on, 1]
1579
+ - [false, no, n, off, 0]
1580
+
1581
+ _clear_defaults: [class, date, domain, expver, levelist, levtype, param, step, stream, time, type]
1582
+
1583
+ ##############################################################
1584
+
1585
+ get:
1586
+
1587
+ tape:
1588
+ category: sink
1589
+ flatten: false
1590
+ multiple: false
1591
+ type: any
1592
+
1593
+ database:
1594
+ category: sink
1595
+ flatten: false
1596
+ multiple: true
1597
+ type: any
1598
+
1599
+ target:
1600
+ category: sink
1601
+ flatten: false
1602
+ multiple: true
1603
+ type: any
1604
+
1605
+ ##############################################################
1606
+
1607
+ list:
1608
+
1609
+ <<: *_field
1610
+ <<: *_observation
1611
+
1612
+ database:
1613
+ category: sink
1614
+ flatten: false
1615
+ multiple: true
1616
+ type: any
1617
+
1618
+ target:
1619
+ category: sink
1620
+ flatten: false
1621
+ multiple: true
1622
+ type: any
1623
+
1624
+ pseudodate:
1625
+ flatten: false
1626
+ multiple: false
1627
+ type: enum
1628
+ values:
1629
+ - [latest]
1630
+ - [earliest]
1631
+
1632
+ output:
1633
+ category: sink
1634
+ flatten: false
1635
+ multiple: false
1636
+ defaults:
1637
+ - vals: [table]
1638
+ type: enum
1639
+ values:
1640
+ - [table]
1641
+ - [browse]
1642
+ - [cost]
1643
+ - [search]
1644
+ - [tree]
1645
+ - [json]
1646
+
1647
+ _clear_defaults: [date, domain, expver, levelist, levtype, param, step, stream, time, type]
1648
+ _multiple: [class, expver, stream, type]
1649
+
1650
+ ##############################################################
1651
+
1652
+ compute:
1653
+
1654
+ formula:
1655
+ flatten: false
1656
+ multiple: false
1657
+ type: any
1658
+
1659
+ fieldset:
1660
+ category: sink
1661
+ aliases: [field]
1662
+ flatten: false
1663
+ multiple: false
1664
+ type: any
1665
+
1666
+ ##############################################################
1667
+
1668
+ write:
1669
+
1670
+ fieldset:
1671
+ category: sink
1672
+ aliases: [field]
1673
+ flatten: false
1674
+ multiple: false
1675
+ type: any
1676
+
1677
+ target:
1678
+ category: sink
1679
+ flatten: false
1680
+ multiple: true
1681
+ type: any
1682
+
1683
+ ##############################################################
1684
+
1685
+
1686
+ pointdb:
1687
+ lat:
1688
+ multiple: false
1689
+ type: float
1690
+
1691
+ lon:
1692
+ multiple: false
1693
+ type: float
1694
+
1695
+ <<: *_field
1696
+
1697
+ _clear_defaults: [class, date, domain, expver, levelist, levtype, param, step, stream, time, type]
1698
+
1699
+ _options:
1700
+ param:
1701
+ # expand_with: # In case not type/stream/levtype is provided
1702
+ # type: an
1703
+ # stream: oper
1704
+ # levtype: pl
1705
+ first_rule: true
1706
+
1707
+ end: {}