-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquantity.cue
444 lines (442 loc) · 13.3 KB
/
quantity.cue
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
package odim_hdf5
_quantities: [...#VersionEnum]
_quantities: [
#VersionEnum & {
name: "SQI"
description: "Signal quality index"
versions: ["V2_0", "V2_1"]
},
#VersionEnum & {
name: "dbz"
description: "[dBZ] Logged radar reflectivity factor"
versions: ["V2_0", "V2_1"]
},
#VersionEnum & {
name: "dbz_dev"
description: "[dBZ] Variability of logged radar reflectivity factor"
versions: ["V2_0", "V2_1"]
},
#VersionEnum & {
name: "z"
description: "[Z] Linear radar reflectivity factor"
versions: ["V2_0", "V2_1"]
},
#VersionEnum & {
name: "z_dev"
description: "[Z] Variability of linear radar reflectivity factor"
versions: ["V2_0", "V2_1"]
},
#VersionEnum & {
name: "chi2"
description: "Chi-square value of wind profile fit"
versions: ["V2_0", "V2_1"]
},
#VersionEnum & {
name: "rhohv"
description: "ρhv [0-1] Correlation between Zh and Zv"
versions: ["V2_0", "V2_1"]
},
#VersionEnum & {
name: "VRAD"
description: "[m/s] Radial velocity"
versions: ["V2_0", "V2_1", "V2_2"]
},
#VersionEnum & {
name: "WRAD"
description: "[m/s] Spectral width of radial velocity"
versions: ["V2_0", "V2_1", "V2_2"]
},
#VersionEnum & {
name: "ZDR"
description: "ZDR [dB] Logged differential reflectivity"
},
#VersionEnum & {
name: "RHOHV"
description: "ρhv [0-1] Correlation between Zh and Zv"
},
#VersionEnum & {
name: "LDR"
description: "Ldr [dB] Linear depolarization ratio"
},
#VersionEnum & {
name: "PHIDP"
description: "φdp [degrees] Differential phase"
},
#VersionEnum & {
name: "KDP"
description: "Kdp [degrees/km] Specific differential phase"
},
#VersionEnum & {
name: "RATE"
description: "RR [mm/h] Rain rate"
},
#VersionEnum & {
name: "ACRR"
description: "RRaccum. [mm] Accumulated precipitation"
},
#VersionEnum & {
name: "HGHT"
description: "H [km] Height above mean sea level"
},
#VersionEnum & {
name: "VIL"
description: "VIL [kg/m2] Vertical Integrated Liquid water"
},
#VersionEnum & {
name: "UWND"
description: "U [m/s] Component of wind in x-direction"
},
#VersionEnum & {
name: "VWND"
description: "V [m/s] Component of wind in y-direction"
},
#VersionEnum & {
name: "w"
description: "[m/s] Vertical velocity (positive upwards)"
},
#VersionEnum & {
name: "w_dev"
description: "[m/s] Vertical velocity variability"
},
#VersionEnum & {
name: "div"
description: "[s−1] Divergence"
},
#VersionEnum & {
name: "div_dev"
description: "[s−1] Divergence variation"
},
#VersionEnum & {
name: "def"
description: "[s−1] Deformation"
},
#VersionEnum & {
name: "def_dev"
description: "[s−1] Deformation variation"
},
#VersionEnum & {
name: "ad"
description: "[degrees] Axis of dialation (0-360)"
},
#VersionEnum & {
name: "ad_dev"
description: "[degrees] Variability of axis of dialation (0-360)"
},
#VersionEnum & {
name: "rhohv_dev"
description: "ρhv [0-1] ρhv variation"
},
#VersionEnum & {
name: "QIND"
description: "Quality [0-1] Spatially analyzed quality indicator, according to OPERA II, normalized to between 0 (poorest quality) to 1 (best quality)"
},
#VersionEnum & {
name: "CLASS"
description: "Classification Indicates that data are classified and that the classes are specified according to the associated legend object (Section 6.2) whichmust be present."
},
#VersionEnum & {
name: "ff"
description: "[m/s] Mean horizontal wind velocity"
},
#VersionEnum & {
name: "dd"
description: "[degrees] Mean horizontal wind direction (degrees)"
},
#VersionEnum & {
name: "ff_dev"
description: "[m/s] Velocity variability"
},
#VersionEnum & {
name: "dd_dev"
description: "[m/s] Direction variability"
},
#VersionEnum & {
name: "n"
description: "– Sample size."
versions: ["V2_0", "V2_1", "V2_2", "V2_3"]
},
#VersionEnum & {
name: "BRDR"
description: "0 or 1 1 denotes a border where data from two or more radars meet incomposites, otherwise 0"
},
#VersionEnum & {
name: "DBZH"
description: "Zh [dBZ] Logged horizontally-polarized (corrected) reflectivity factor"
},
#VersionEnum & {
name: "DBZV"
description: "Zv [dBZ] Logged vertically-polarized (corrected) reflectivity factor"
},
#VersionEnum & {
name: "TH"
description: "Th [dBZ] Logged horizontally-polarized total (uncorrected) reflectivity factor"
},
#VersionEnum & {
name: "TV"
description: "Tv [dBZ] Logged vertically-polarized total (uncorrected) reflectivity factor"
},
#VersionEnum & {
name: "SNR"
description: "SNR [dB] Signal-to-noise ratio"
},
#VersionEnum & {
name: "SQIH"
description: "SQIh [0-1] Signal quality index - horizontally-polarized"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "USQIH"
description: "SQIh [0-1] Signal quality index - horizontally-polarized - that has not been subject to a Doppler filter"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "SQIV"
description: "SQIv [0-1] Signal quality index - vertically-polarized"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "USQIV"
description: "SQIv [0-1] Signal quality index - vertically-polarized - that has not been subject to a Doppler filter"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "SNRH"
description: "SNRh [0-1] Normalized signal-to-noise ratio - horizontally-polarized."
versions: ["V2_2", "V2_3"]
},
#VersionEnum & {
name: "SNRV"
description: "SNRv [0-1] Normalized signal-to-noise ratio - vertically-polarized."
versions: ["V2_2", "V2_3"]
},
#VersionEnum & {
name: "SNRHC"
description: "SNRh,c [dB] Signal-to-noise ratio co-polar H"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "SNRHX"
description: "SNRh,x [dB] Signal-to-noise ratio cross-polar H"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "SNRVC"
description: "SNRv,c [dB] Signal-to-noise ratio co-polar V"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "SNRVX"
description: "SNRv,x [dB] Signal to noise ratio cross polar V"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "CCORH"
description: "CCh [dB] Clutter correction - horizontally-polarized"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "CCORV"
description: "CCv [dB] Clutter correction - vertically-polarized"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "VRADH"
description: "Vrad,h [m/s] Radial velocity - horizontally-polarized. Radial winds towards the radar are negative, while radial winds away from the radar are positive (PANT)."
versions: _from["V2_2"]
},
#VersionEnum & {
name: "UVRADH"
description: "Vrad,h [m/s] Radial velocity - horizontally-polarized - that has not been subject to any filter or correction. Radial winds towards the radar are negative, while radial winds away from the radar are positive (PANT)."
versions: _from["V2_3"]
},
#VersionEnum & {
name: "VRADV"
description: "Vrad,v [m/s] Radial velocity - vertically-polarized. Radial winds towards the radar are negative, while radial winds away from the radar are positive (PANT)."
versions: _from["V2_2"]
},
#VersionEnum & {
name: "UVRADV"
description: "Vrad,v [m/s] Radial velocity - vertically-polarized - that has not been subject to any filter or correction. Radial winds towards the radar are negative, while radial winds away from the radar are positive (PANT)."
versions: _from["V2_3"]
},
#VersionEnum & {
name: "VRADDH"
description: "Vrad,d [m/s] Dealiased horizontally-polarized radial velocity"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "VRADDV"
description: "Vrad,d [m/s] Dealiased vertically-polarized radial velocity"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "WRADH"
description: "Wrad,h [m/s] Spectral width of radial velocity - horizontally-polarized"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "UWRADH"
description: "Wrad,h [m/s] Spectral width of radial velocity - horizontally-polarized - that has not been subject to any filter or correction"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "WRADV"
description: "Wrad,v [m/s] Spectral width of radial velocity - vertically-polarized"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "UWRADV"
description: "Wrad,v [m/s] Spectral width of radial velocity - vertically-polarized - that has not been subject to any filter or correction"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "PSPH"
description: "PSP [dBm] Power spectrum peak - horizontally-polarized"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "PSPV"
description: "PSP [dBm] Power spectrum peak - vertically-polarized"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "UPSPH"
description: "PSP [dBm] Power spectrum peak - horizontally-polarized - that has not been subject to any filter or correction"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "UPSPV"
description: "PSP [dBm] Power spectrum peak - vertically-polarized - that has not been subject to any filter or correction"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "DBZH_dev"
description: "[dBZ] Variability of logged horizontally-polarized (corrected) reflectivity factor"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "DBZV_dev"
description: "[dBZ] Variability of logged vertically-polarized (corrected) reflectivity factor"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "UZDR"
description: "ZDR [dB] Logged differential reflectivity that has not been subject to a Doppler filter"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "URHOHV"
description: "ρhv [0-1] Correlation between Zh and Zv that has not been subject to any filter or correction"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "ULDR"
description: "Ldr [dB] Linear depolarization ratio that has not been subject to a Doppler filter"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "UPHIDP"
description: "φdp [degrees] Differential phase that has not been subject to any filter or correction"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "PIA"
description: "PIA [dB] Path Integrated Attenuation"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "UKDP"
description: "Kdp [degrees/km] Specific differential phase that has not been subject to any filter or correction"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "CPA"
description: "CPA [0-1] Clutter phase alignment (0: low probability of clutter, 1: high probability of clutter)"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "URATE"
description: "URR [mm/h] Uncorrected rain rate"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "POR"
description: "POR [0-1] Probability of rain (0: low probability, 1: high probability)"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "HI"
description: "HI [dBZ] Hail intensity"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "HP"
description: "HP [%] Hail probability."
versions: _from["V2_3"]
},
#VersionEnum & {
name: "POH"
description: "POH [0-1] Probability of hail (0: low probability, 1: high probability)"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "POSH"
description: "POSH [0-1] Probability of severe hail (0: low probability, 1: high probability)"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "MESH"
description: "MESH [cm] Maximum expected severe hail size"
versions: _from["V2_3"]
},
#VersionEnum & {
name: "RSHR"
description: "SHRr [m/s km] Radial shear"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "ASHR"
description: "SHRa [m/s km] Azimuthal shear"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "CSHR"
description: "SHRc [m/s km] Range-azimuthal shear"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "ESHR"
description: "SHRe [m/s km] Elevation shear"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "OSHR"
description: "SHRo [m/s km] Range-elevation shear"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "HSHR"
description: "SHRh [m/s km] Horizontal shear"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "VSHR"
description: "SHRv [m/s km] Vertical shear"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "TSHR"
description: "SHRt [m/s km] Three-dimensional shear"
versions: _from["V2_2"]
},
#VersionEnum & {
name: "USNRHC"
description: "dB Signal-to-noise ratio co-polar H that has not been subject to a Doppler filter. This attribute should be used for a STAR mode radar."
versions: _from["V2_4"]
},
#VersionEnum & {
name: "USNRVC"
description: "dB Signal-to-noise ratio co-polar V that has not been subject to a Doppler filter. This attribute should be used for a STAR mode radar."
versions: _from["V2_4"]
},
]