-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdawp_sample.txt
1517 lines (1153 loc) · 33.6 KB
/
dawp_sample.txt
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Dataset 0
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
adiabaticCondensation int64 0
latitude (y, x) float64 25.12 25.17 25.22 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pres ('y', 'x')
long_name: Pressure
units: Pa
gh ('y', 'x')
long_name: Geopotential Height
units: gpm
standard_name: geopotential_height
----
Dataset 1
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
cloudBase int64 0
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pres ('y', 'x')
long_name: Pressure
units: Pa
gh ('y', 'x')
long_name: Geopotential Height
units: gpm
standard_name: geopotential_height
----
Dataset 2
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
cloudTop int64 0
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pres ('y', 'x')
long_name: Pressure
units: Pa
t ('y', 'x')
long_name: Temperature
units: K
standard_name: air_temperature
gh ('y', 'x')
long_name: Geopotential Height
units: gpm
standard_name: geopotential_height
vis ('y', 'x')
long_name: Visibility
units: m
----
Dataset 3
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
depthBelowLand int64 3
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
st ('y', 'x')
long_name: Soil Temperature
units: K
----
Dataset 4
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
depthBelowLandLayer int64 0
latitude (y, x) float64 25.12 25.17 25.22 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
sm ('y', 'x')
long_name: Soil Moisture
units: kg m**-3
mstav ('y', 'x')
long_name: Moisture availability
units: %
----
Dataset 5
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* depthBelowLandLayer (depthBelowLandLayer) int64 0 1
latitude (y, x) float64 25.12 25.17 25.22 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
st ('depthBelowLandLayer', 'y', 'x')
long_name: Soil Temperature
units: K
soilw ('depthBelowLandLayer', 'y', 'x')
long_name: Volumetric soil moisture content
units: Proportion
soill ('depthBelowLandLayer', 'y', 'x')
long_name: Liquid volumetric soil moisture (non-frozen)
units: Proportion
----
Dataset 6
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveGround (heightAboveGround) int64 10 1000
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
paramId_0 ('heightAboveGround', 'y', 'x')
long_name: original GRIB paramId: 0
units: 1
----
Dataset 7
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
heightAboveGround int64 10
latitude (y, x) float64 25.12 25.17 25.22 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pt ('y', 'x')
long_name: Potential temperature
units: K
u10 ('y', 'x')
long_name: 10 metre U wind component
units: m s**-1
standard_name: eastward_wind
v10 ('y', 'x')
long_name: 10 metre V wind component
units: m s**-1
standard_name: northward_wind
si10 ('y', 'x')
long_name: 10 metre wind speed
units: m s**-1
----
Dataset 8
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveGround (heightAboveGround) int64 30 50 80 100
latitude (y, x) float64 25.12 25.17 25.22 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pres ('heightAboveGround', 'y', 'x')
long_name: Pressure
units: Pa
t ('heightAboveGround', 'y', 'x')
long_name: Temperature
units: K
standard_name: air_temperature
----
Dataset 9
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveGround (heightAboveGround) int64 30 50 80
latitude (y, x) float64 25.12 25.17 25.22 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
u ('heightAboveGround', 'y', 'x')
long_name: U component of wind
units: m s**-1
standard_name: eastward_wind
v ('heightAboveGround', 'y', 'x')
long_name: V component of wind
units: m s**-1
standard_name: northward_wind
----
Dataset 10
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveGround (heightAboveGround) int64 2 10 30 50 80 100
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
q ('heightAboveGround', 'y', 'x')
long_name: Specific humidity
units: kg kg**-1
standard_name: specific_humidity
----
Dataset 11
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
heightAboveGround int64 2
latitude (y, x) float64 25.12 25.17 25.22 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
t2m ('y', 'x')
long_name: 2 metre temperature
units: K
standard_name: air_temperature
d2m ('y', 'x')
long_name: 2 metre dewpoint temperature
units: K
tmax ('y', 'x')
long_name: Maximum temperature
units: K
tmin ('y', 'x')
long_name: Minimum temperature
units: K
maxrh ('y', 'x')
long_name: Maximum relative humidity
units: %
r2 ('y', 'x')
long_name: 2 metre relative humidity
units: %
standard_name: relative_humidity
minrh ('y', 'x')
long_name: Minimum Relative Humidity
units: %
----
Dataset 12
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
heightAboveGround int64 100
latitude (y, x) float64 25.12 25.17 25.22 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
u100 ('y', 'x')
long_name: 100 metre U wind component
units: m s**-1
standard_name: eastward_wind
v100 ('y', 'x')
long_name: 100 metre V wind component
units: m s**-1
standard_name: northward_wind
----
Dataset 13
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveGround (heightAboveGround) int64 1000 4000
latitude (y, x) float64 25.12 25.17 25.22 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
refzr ('heightAboveGround', 'y', 'x')
long_name: Derived radar reflectivity backscatter from rain
units: mm**6 m**-3
refzi ('heightAboveGround', 'y', 'x')
long_name: Derived radar reflectivity backscatter from ice
units: mm**6 m**-3
refd ('heightAboveGround', 'y', 'x')
long_name: Derived radar reflectivity
units: dB
----
Dataset 14
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveGroundLayer (heightAboveGroundLayer) int64 3000 5000
latitude (y, x) float64 25.12 25.17 25.22 ... 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
paramId_0 ('heightAboveGroundLayer', 'y', 'x')
long_name: original GRIB paramId: 0
units: 1
----
Dataset 15
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveGroundLayer (heightAboveGroundLayer) int64 1000 2000
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
vo ('heightAboveGroundLayer', 'y', 'x')
long_name: Vorticity (relative)
units: s**-1
standard_name: atmosphere_relative_vorticity
----
Dataset 16
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
heightAboveGroundLayer int64 0
latitude (y, x) float64 25.12 25.17 25.22 ... 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
vucsh ('y', 'x')
long_name: Vertical u-component shear
units: s**-1
vvcsh ('y', 'x')
long_name: Vertical v-component shear
units: s**-1
----
Dataset 17
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
heightAboveGroundLayer int64 6000
latitude (y, x) float64 25.12 25.17 25.22 ... 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
ustm ('y', 'x')
long_name: U-component storm motion
units: m s**-1
vstm ('y', 'x')
long_name: V-component storm motion
units: m s**-1
----
Dataset 18
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveGroundLayer (heightAboveGroundLayer) int64 1000 3000
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
hlcy ('heightAboveGroundLayer', 'y', 'x')
long_name: Storm relative helicity
units: J kg**-1
----
Dataset 19
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
heightAboveGroundLayer int64 5000
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
uphl ('y', 'x')
long_name: Updraft Helicity
units: m**2 s**-2
----
Dataset 20
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveSea (heightAboveSea) int64 457 610 914 1524 ... 2743 3658 4572
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
t ('heightAboveSea', 'y', 'x')
long_name: Temperature
units: K
standard_name: air_temperature
----
Dataset 21
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* heightAboveSea (heightAboveSea) int64 305 457 610 914 ... 2743 3658 4572
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
u ('heightAboveSea', 'y', 'x')
long_name: U component of wind
units: m s**-1
standard_name: eastward_wind
v ('heightAboveSea', 'y', 'x')
long_name: V component of wind
units: m s**-1
standard_name: northward_wind
----
Dataset 22
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
heightAboveSea int64 305
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
q ('y', 'x')
long_name: Specific humidity
units: kg kg**-1
standard_name: specific_humidity
----
Dataset 23
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* hybrid (hybrid) int64 1 2
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pt ('hybrid', 'y', 'x')
long_name: Potential temperature
units: K
pres ('hybrid', 'y', 'x')
long_name: Pressure
units: Pa
t ('hybrid', 'y', 'x')
long_name: Temperature
units: K
standard_name: air_temperature
u ('hybrid', 'y', 'x')
long_name: U component of wind
units: m s**-1
standard_name: eastward_wind
v ('hybrid', 'y', 'x')
long_name: V component of wind
units: m s**-1
standard_name: northward_wind
gh ('hybrid', 'y', 'x')
long_name: Geopotential Height
units: gpm
standard_name: geopotential_height
dpt ('hybrid', 'y', 'x')
long_name: Dew point temperature
units: K
tcc ('hybrid', 'y', 'x')
long_name: Total Cloud Cover
units: %
tcond ('hybrid', 'y', 'x')
long_name: Condensate
units: kg kg**-1
clwmr ('hybrid', 'y', 'x')
long_name: Cloud mixing ratio
units: kg kg**-1
icmr ('hybrid', 'y', 'x')
long_name: Ice water mixing ratio
units: kg kg**-1
rwmr ('hybrid', 'y', 'x')
long_name: Rain mixing ratio
units: kg kg**-1
snmr ('hybrid', 'y', 'x')
long_name: Snow mixing ratio
units: kg kg**-1
rime ('hybrid', 'y', 'x')
long_name: Rime factor
units: Numeric
tke ('hybrid', 'y', 'x')
long_name: Turbulent kinetic energy
units: J kg**-1
refd ('hybrid', 'y', 'x')
long_name: Derived radar reflectivity
units: dB
----
Dataset 24
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
hybrid int64 1
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
q ('y', 'x')
long_name: Specific humidity
units: kg kg**-1
standard_name: specific_humidity
w ('y', 'x')
long_name: Vertical velocity
units: Pa s**-1
standard_name: lagrangian_tendency_of_air_pressure
vo ('y', 'x')
long_name: Vorticity (relative)
units: s**-1
standard_name: atmosphere_relative_vorticity
r ('y', 'x')
long_name: Relative humidity
units: %
standard_name: relative_humidity
grle ('y', 'x')
long_name: Graupel (snow pellets)
units: kg kg**-1
fco2gpp ('y', 'x')
long_name: Blackadar mixing length scale
units: m
wz ('y', 'x')
long_name: Geometric vertical velocity
units: m s**-1
----
Dataset 25
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* isobaricInhPa (isobaricInhPa) int64 500 250
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
strf ('isobaricInhPa', 'y', 'x')
long_name: Stream function
units: m**2 s**-1
----
Dataset 26
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* isobaricInhPa (isobaricInhPa) int64 1000 975 950 925 900 ... 20 10 7 5 2
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
t ('isobaricInhPa', 'y', 'x')
long_name: Temperature
units: K
standard_name: air_temperature
u ('isobaricInhPa', 'y', 'x')
long_name: U component of wind
units: m s**-1
standard_name: eastward_wind
v ('isobaricInhPa', 'y', 'x')
long_name: V component of wind
units: m s**-1
standard_name: northward_wind
q ('isobaricInhPa', 'y', 'x')
long_name: Specific humidity
units: kg kg**-1
standard_name: specific_humidity
w ('isobaricInhPa', 'y', 'x')
long_name: Vertical velocity
units: Pa s**-1
standard_name: lagrangian_tendency_of_air_pressure
gh ('isobaricInhPa', 'y', 'x')
long_name: Geopotential Height
units: gpm
standard_name: geopotential_height
r ('isobaricInhPa', 'y', 'x')
long_name: Relative humidity
units: %
standard_name: relative_humidity
dpt ('isobaricInhPa', 'y', 'x')
long_name: Dew point temperature
units: K
clwmr ('isobaricInhPa', 'y', 'x')
long_name: Cloud mixing ratio
units: kg kg**-1
icmr ('isobaricInhPa', 'y', 'x')
long_name: Ice water mixing ratio
units: kg kg**-1
rwmr ('isobaricInhPa', 'y', 'x')
long_name: Rain mixing ratio
units: kg kg**-1
snmr ('isobaricInhPa', 'y', 'x')
long_name: Snow mixing ratio
units: kg kg**-1
rime ('isobaricInhPa', 'y', 'x')
long_name: Rime factor
units: Numeric
tke ('isobaricInhPa', 'y', 'x')
long_name: Turbulent kinetic energy
units: J kg**-1
wz ('isobaricInhPa', 'y', 'x')
long_name: Geometric vertical velocity
units: m s**-1
----
Dataset 27
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* isobaricInhPa (isobaricInhPa) int64 1000 925 850 750 ... 400 300 250 200
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
absv ('isobaricInhPa', 'y', 'x')
long_name: Absolute vorticity
units: s**-1
----
Dataset 28
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* isobaricInhPa (isobaricInhPa) int64 950 850
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
mconv ('isobaricInhPa', 'y', 'x')
long_name: Horizontal moisture convergence
units: kg kg**-1 s**-1
----
Dataset 29
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
isobaricLayer int64 100
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
paramId_0 ('y', 'x')
long_name: original GRIB paramId: 0
units: 1
----
Dataset 30
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
isobaricLayer int64 500
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
lftx ('y', 'x')
long_name: Surface lifted index
units: K
----
Dataset 31
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
isothermZero int64 0
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
gh ('y', 'x')
long_name: Geopotential Height
units: gpm
standard_name: geopotential_height
r ('y', 'x')
long_name: Relative humidity
units: %
standard_name: relative_humidity
----
Dataset 32
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
isothermal int64 263
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
paramId_0 ('y', 'x')
long_name: original GRIB paramId: 0
units: 1
refd ('y', 'x')
long_name: Derived radar reflectivity
units: dB
----
Dataset 33
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
maxWind int64 0
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pres ('y', 'x')
long_name: Pressure
units: Pa
u ('y', 'x')
long_name: U component of wind
units: m s**-1
standard_name: eastward_wind
v ('y', 'x')
long_name: V component of wind
units: m s**-1
standard_name: northward_wind
gh ('y', 'x')
long_name: Geopotential Height
units: gpm
standard_name: geopotential_height
----
Dataset 34
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
meanSea int64 0
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
prmsl ('y', 'x')
long_name: Pressure reduced to MSL
units: Pa
mslet ('y', 'x')
long_name: MSLP (Eta model reduction)
units: Pa
----
Dataset 35
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
nominalTop int64 0
latitude (y, x) float64 25.12 25.17 25.22 25.28 ... 45.8 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 240.0 ... 292.8 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pres ('y', 'x')
long_name: Pressure
units: Pa
btmp ('y', 'x')
long_name: Brightness temperature
units: K
uswrf ('y', 'x')
long_name: Upward short-wave radiation flux
units: W m**-2
ulwrf ('y', 'x')
long_name: Upward long-wave radiation flux
units: W m**-2
----
Dataset 36
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
pressureFromGroundLayer int64 3000
latitude (y, x) float64 25.12 25.17 25.22 ... 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pt ('y', 'x')
long_name: Potential temperature
units: K
dpt ('y', 'x')
long_name: Dew point temperature
units: K
pli ('y', 'x')
long_name: Parcel lifted index (to 500 hPa)
units: K
pwat ('y', 'x')
long_name: Precipitable water
units: kg m**-2
mconv ('y', 'x')
long_name: Horizontal moisture convergence
units: kg kg**-1 s**-1
----
Dataset 37
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* pressureFromGroundLayer (pressureFromGroundLayer) int64 3000 6000 ... 18000
latitude (y, x) float64 25.12 25.17 25.22 ... 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
pres ('pressureFromGroundLayer', 'y', 'x')
long_name: Pressure
units: Pa
t ('pressureFromGroundLayer', 'y', 'x')
long_name: Temperature
units: K
standard_name: air_temperature
u ('pressureFromGroundLayer', 'y', 'x')
long_name: U component of wind
units: m s**-1
standard_name: eastward_wind
v ('pressureFromGroundLayer', 'y', 'x')
long_name: V component of wind
units: m s**-1
standard_name: northward_wind
q ('pressureFromGroundLayer', 'y', 'x')
long_name: Specific humidity
units: kg kg**-1
standard_name: specific_humidity
r ('pressureFromGroundLayer', 'y', 'x')
long_name: Relative humidity
units: %
standard_name: relative_humidity
----
Dataset 38
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* pressureFromGroundLayer (pressureFromGroundLayer) int64 9000 18000 25500
latitude (y, x) float64 25.12 25.17 25.22 ... 45.73 45.65
longitude (y, x) float64 239.3 239.5 239.7 ... 293.1 293.4
valid_time datetime64[ns] 2019-06-15T21:00:00
cape ('pressureFromGroundLayer', 'y', 'x')
long_name: Convective available potential energy
units: J kg**-1
cin ('pressureFromGroundLayer', 'y', 'x')
long_name: Convective inhibition
units: J kg**-1
----
Dataset 39
Coordinates:
time datetime64[ns] 2019-06-15
step timedelta64[ns] 21:00:00
* pressureFromGroundLayer (pressureFromGroundLayer) int64 3000 9000 18000
latitude (y, x) float64 ...
longitude (y, x) float64 ...
valid_time datetime64[ns] ...
w ('pressureFromGroundLayer', 'y', 'x')
long_name: Vertical velocity
units: Pa s**-1
standard_name: lagrangian_tendency_of_air_pressure
----