forked from metno/snap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcdmGribReaderConfigGFS.xml
1913 lines (1782 loc) · 110 KB
/
cdmGribReaderConfigGFS.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<cdmGribReaderConfig xmlns="http://www.met.no/schema/fimex/cdmGribReaderConfig"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- xsi:schemaLocation="http://www.met.no/schema/fimex/cdmGribReaderConfig cdmGribReaderConfig.xsd" -->
<processOptions>
<!-- parameters to select: all, definedOnly -->
<option name="selectParameters" value="definedOnly" />
</processOptions>
<overrule>
<!-- use these values instead of the values in the grib-messages -->
<earthFigure proj4="+R=6.371e+06" />
</overrule>
<global_attributes>
<attribute name="Conventions" value="CF-1.0" type="string" />
<attribute name="institution" value="National Centers for Environmental Prediction (NCEP)" type="string" />
<attribute name="source" value="https://nomads.ncep.noaa.gov/cgi-bin/filter_gfs_0p25.pl" type="string" />
<attribute name="title" value="Global Forecast System (GFS)" type="string" />
</global_attributes>
<axes>
<time id="time" name="time" type="double">
<attribute name="long_name" value="time" type="string" />
<attribute name="standard_name" value="time" type="string" />
<attribute name="units" value="seconds since 1970-01-01 00:00:00 +00:00" type="string" />
</time>
<spatial_axis typeOfGrid="lambert" id="x" name="x" type="float">
<attribute name="long_name" value="x-coordinate in Cartesian system" type="string" />
<attribute name="standard_name" value="projection_x_coordinate" type="string" />
<attribute name="units" value="m" type="string" />
</spatial_axis>
<spatial_axis typeOfGrid="lambert" id="y" name="y" type="float">
<attribute name="long_name" value="y-coordinate in Cartesian system" type="string" />
<attribute name="standard_name" value="projection_y_coordinate" type="string" />
<attribute name="units" value="m" type="string" />
</spatial_axis>
<spatial_axis typeOfGrid="mercator" id="x" name="x" type="float">
<attribute name="long_name" value="x-coordinate in Cartesian system" type="string" />
<attribute name="standard_name" value="projection_x_coordinate" type="string" />
<attribute name="units" value="m" type="string" />
</spatial_axis>
<spatial_axis typeOfGrid="mercator" id="y" name="y" type="float">
<attribute name="long_name" value="y-coordinate in Cartesian system" type="string" />
<attribute name="standard_name" value="projection_y_coordinate" type="string" />
<attribute name="units" value="m" type="string" />
</spatial_axis>
<spatial_axis typeOfGrid="polar_stereographic" id="x" name="x" type="float">
<attribute name="long_name" value="x-coordinate in Cartesian system" type="string" />
<attribute name="standard_name" value="projection_x_coordinate" type="string" />
<attribute name="units" value="m" type="string" />
</spatial_axis>
<spatial_axis typeOfGrid="polar_stereographic" id="y" name="y" type="float">
<attribute name="long_name" value="y-coordinate in Cartesian system" type="string" />
<attribute name="standard_name" value="projection_y_coordinate" type="string" />
<attribute name="units" value="m" type="string" />
</spatial_axis>
<spatial_axis typeOfGrid="regular_ll" id="x" name="longitude" type="float">
<attribute name="long_name" value="longitude" type="string" />
<attribute name="units" value="degrees_east" type="string" />
</spatial_axis>
<spatial_axis typeOfGrid="regular_ll" id="y" name="latitude" type="float">
<attribute name="long_name" value="latitude" type="string" />
<attribute name="units" value="degrees_north" type="string" />
</spatial_axis>
<spatial_axis typeOfGrid="rotated_ll" id="x" name="rlon" type="float">
<attribute name="long_name" value="rotated longitude" type="string" />
<attribute name="standard_name" value="grid_longitude" type="string" />
<attribute name="units" value="degrees" type="string" />
</spatial_axis>
<spatial_axis typeOfGrid="rotated_ll" id="y" name="rlat" type="float">
<attribute name="long_name" value="rotated latitude" type="string" />
<attribute name="standard_name" value="grid_latitude" type="string" />
<attribute name="units" value="degrees" type="string" />
</spatial_axis>
<spatial_axis id="longitude" name="longitude">
<attribute name="valid_max" value="180." type="float" />
<attribute name="valid_min" value="-180." type="float" />
<attribute name="long_name" value="longitude" type="string" />
<attribute name="standard_name" value="longitude" type="string" />
<attribute name="units" value="degree_east" type="string" />
</spatial_axis>
<spatial_axis id="latitude" name="latitude">
<attribute name="valid_max" value="90." type="float" />
<attribute name="valid_min" value="-90." type="float" />
<attribute name="long_name" value="latitude" type="string" />
<attribute name="standard_name" value="latitude" type="string" />
<attribute name="units" value="degree_north" type="string" />
</spatial_axis>
<!-- grib2 code table 4.5; grib1 code table 3 / 3a -->
<vertical_axis id="surface" name="surface" grib2_id="1" grib1_id="1" type="short">
<attribute name="description" value="ground or water surface" type="string" />
<attribute name="long_name" value="surface" type="string" />
<attribute name="positive" value="up" type="string" />
<attribute name="units" value="m" type="string" />
</vertical_axis>
<vertical_axis id="isotherm_0C_level" name="isotherm_0C_level" grib2_id="4" type="short">
<attribute name="description" value="level of 0degreeC isotherm" type="string" />
<attribute name="long_name" value="isotherm 0C" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="maximum_wind_level" name="maximum_wind_level" grib2_id="6" type="short">
<attribute name="long_name" value="max wind level" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="tropopause" name="tropopause" grib2_id="7" type="short">
<attribute name="long_name" value="Tropopause" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="top_of_atmosphere" name="top_of_atmosphere" grib2_id="8" type="short">
<attribute name="long_name" value="nominal top of atmosphere" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="mean_sea_level" name="mean_sea_level" grib2_id="101" grib1_id="102" type="short">
<attribute name="description" value="mean sea level" type="string" />
<attribute name="long_name" value="mean_sea_level" type="string" />
<attribute name="positive" value="up" type="string" />
<attribute name="units" value="m" type="string" />
</vertical_axis>
<vertical_axis id="pressure" name="pressure" grib2_id="100" grib1_id="100" type="float">
<!-- Isobaric level -->
<attribute name="description" value="pressure" type="string" />
<attribute name="long_name" value="pressure" type="string" />
<attribute name="standard_name" value="air_pressure" type="string" />
<attribute name="positive" value="down" type="string" />
<grib1>
<attribute name="units" value="hPa" type="string" />
</grib1>
<grib2>
<attribute name="units" value="hPa" type="string" />
</grib2>
</vertical_axis>
<vertical_axis id="height_above_msl" name="height_above_msl" grib2_id="102" grib1_id="103" type="float">
<attribute name="description" value="height above MSL" type="string" />
<attribute name="long_name" value="height" type="string" />
<attribute name="positive" value="up" type="string" />
<attribute name="units" value="m" type="string" />
</vertical_axis>
<vertical_axis id="layer_between_altitudes" name="layer_between_altitudes" grib1_id="104" type="float">
<attribute name="description" value="layer between two altitudes" type="string" />
<attribute name="long_name" value="layer between two altitudes" type="string" />
<attribute name="positive" value="up" type="string" />
<attribute name="units" value="100m" type="string" />
</vertical_axis>
<vertical_axis id="height" name="height" grib2_id="103" grib1_id="105" type="float">
<attribute name="description" value="height above ground" type="string" />
<attribute name="long_name" value="height" type="string" />
<attribute name="positive" value="up" type="string" />
<attribute name="units" value="m" type="string" />
</vertical_axis>
<vertical_axis id="sigma" name="sigma" grib2_id="104" grib1_id="107" type="float">
<attribute name="description" value="atmosphere sigma coordinate" type="string" />
<attribute name="long_name" value="atmosphere_sigma_coordinate" type="string" />
<attribute name="standard_name" value="atmosphere_sigma_coordinate" type="string" />
<attribute name="positive" value="down" type="string" />
</vertical_axis>
<vertical_axis id="hybrid" name="k" grib2_id="105" grib1_id="109" type="double">
<attribute name="standard_name" value="atmosphere_hybrid_sigma_pressure_coordinate" type="string" />
<attribute name="formula" value="p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i)" type="string" />
<attribute name="formula_terms" value="ap: ap%EXT% b: b%EXT% ps: surface_air_pressure p0: p0%EXT%" type="string" />
<attribute name="long_name" value="atmosphere_hybrid_sigma_pressure_coordinate" type="string" />
<attribute name="positive" value="down" type="string" />
<values mode="hybridSigmaCalc(ap,b,p0)" />
<!-- optional values, will otherwise be calculated -->
<!-- <values mode="inline">0.01000025677 0.030167302165 0.0506574118 0.071450009935 0.09252333188 0.1138544163 0.13541913675 0.15719222585 0.17914733025 0.2012570937 0.2234932623 0.24582677445 0.2682278651 0.2906662383 0.31311114455 0.3355315966 0.35789645305 0.38017460195 0.40233509685 0.424347324 0.4461811847 0.4678071633 0.489196539 0.5103215403 0.5311554552 0.55167275145 0.5718492055 0.59166201445 0.61108997355 0.6301135343 0.6487148597 0.66687796335 0.6845887315 0.70183494755 0.71860654485 0.73489551425 0.75069577035 0.7660033971 0.78081677885 0.7951363129 0.80896444377 0.82230582149 0.83516716094 0.847557280535 0.859487003145 0.87096914209 0.882018498895 0.892651686215 0.90288721645 0.912745443885 0.92224845265 0.931419910746 0.9402852619265 0.9488715493425 0.9572073044055 0.96532265475235 0.97331471657385 0.981184395 0.98881774 0.996283525</values> -->
<additional_axis_variable name="p0" type="double" axis="">
<attribute name="units" value="Pa" type="string" />
<values>101325</values>
</additional_axis_variable>
<additional_axis_variable name="ap" type="double" axis="k">
<attribute name="units" value="Pa" type="string" />
<values mode="extraHalvLevel1" scale_factor="1" />
<!-- optional values, will otherwise be retrieved from level2 -->
<!-- <values>1000.025677 3016.7302165 5053.90618 7087.0199935 9093.765188 11053.98013 12949.566675 14764.408585 16484.295025 18096.84587 19591.43773 20959.130445 22192.59551 23286.04683 24235.168455 25037.05066 25690.118305 26194.061695 26549.769185 26759.2609 26825.62347 26752.93383 26546.1954 26211.27253 25754.81752 25184.199145 24507.43255 23733.106445 22870.320355 21928.60293 20917.83697 19848.187335 18730.02765 17573.856255 16390.225985 15189.661425 13982.572535 12779.18721 11589.468885 10423.01579 9288.991377 8196.045649 7152.209594 6164.8270535 5240.4653145 4384.825709 3602.6483895 2897.6316215 2272.348645 1728.1508885 1265.082265 881.7835746 575.42419265 341.59793425 174.23244055 65.519475235 12.368657385 0 0 0</values> -->
</additional_axis_variable>
<additional_axis_variable name="b" type="double" axis="k">
<attribute name="units" value="1" type="string" />
<values mode="extraHalvLevel2" scale_factor="1" />
<!-- optional values, will otherwise be retrieved from ident19 -->
<!-- <values>0 0 0.00011835 0.00057981 0.00158568 0.003314615 0.00592347 0.00954814 0.01430438 0.020288635 0.027578885 0.03623547 0.04630191 0.05780577 0.07075946 0.08516109 0.10099527 0.118233985 0.136837405 0.156754715 0.17792495 0.200277825 0.223734585 0.248208815 0.27360728 0.29983076 0.32677488 0.35433095 0.38238677 0.410827505 0.43953649 0.46839609 0.497288455 0.526096385 0.554704285 0.5829989 0.610870045 0.638211525 0.66492209 0.690906155 0.71607453 0.740345365 0.763645065 0.78590901 0.80708235 0.827120885 0.845992015 0.86367537 0.88016373 0.895463935 0.90959763 0.922602075 0.93453102 0.94545557 0.95546498 0.96466746 0.97319103 0.981184395 0.98881774 0.996283525</values> -->
</additional_axis_variable>
</vertical_axis>
<vertical_axis id="depth" name="depth" grib2_id="106" type="short">
<attribute name="description" value="depth below land surface" type="string" />
<attribute name="long_name" value="depth" type="string" />
<attribute name="positive" value="down" type="string" />
<attribute name="standard_name" value="depth" type="string" />
<grib1>
<attribute name="units" value="cm" type="string" />
</grib1>
<grib2>
<attribute name="units" value="m" type="string" />
</grib2>
</vertical_axis>
<vertical_axis id="specified_pressure_difference" name="specified_pressure_difference" grib2_id="108" type="float">
<attribute name="description" value="Level at specified pressure difference from ground to level" type="string" />
<attribute name="long_name" value="specified pressure difference from ground" type="string" />
<attribute name="standard_name" value="air_pressure" type="string" />
<attribute name="positive" value="up" type="string" />
<grib2>
<attribute name="units" value="Pa" type="string" />
</grib2>
</vertical_axis>
<vertical_axis id="potential_vorticity_surface" name="potential_vorticity_surface" grib2_id="109" type="float">
<attribute name="description" value="Potential vorticity surface" type="string" />
<attribute name="long_name" value="potential vorticity surface" type="string" />
<attribute name="standard_name" value="ertel_potential_vorticity" type="string" />
<attribute name="positive" value="up" type="string" />
<grib2>
<attribute name="units" value="K m^2 / kg s" type="string" />
</grib2>
</vertical_axis>
<vertical_axis id="depth_between_layers" name="depth_between_layers" grib1_id="112" type="short">
<!-- TODO, the 2 layers are not read correctly yet. I need a special function to extract the 2 levels from one grib-field
like in hybridSigma -->
<attribute name="description" value="depth between layers below land surface" type="string" />
<attribute name="long_name" value="depth between layes" type="string" />
<attribute name="positive" value="down" type="string" />
<attribute name="standard_name" value="depth" type="string" />
<attribute name="units" value="cm" type="string" />
</vertical_axis>
<vertical_axis id="theta" name="theta" grib2_id="107" grib1_id="113" type="float">
<attribute name="description" value="isentropic layer" type="string" />
<attribute name="units" value="K" type="string" />
</vertical_axis>
<vertical_axis id="depth_below_sea" name="depth_below_sea" grib2_id="160" grib1_id="160" type="short">
<attribute name="description" value="depth below sea surface" type="string" />
<attribute name="long_name" value="depth_below_sea" type="string" />
<attribute name="positive" value="down" type="string" />
<attribute name="standard_name" value="depth" type="string" />
<attribute name="units" value="m" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_200" name="local_vertical_level_200" grib2_id="200" type="float">
<attribute name="description" value="vertical level 200, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 200" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_204" name="local_vertical_level_204" grib2_id="204" type="float">
<attribute name="description" value="vertical level 204, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 204" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_211" name="local_vertical_level_211" grib2_id="211" type="float">
<attribute name="description" value="vertical level 211, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 211" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_212" name="local_vertical_level_212" grib2_id="212" type="float">
<attribute name="description" value="vertical level 212, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 212" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_213" name="local_vertical_level_213" grib2_id="213" type="float">
<attribute name="description" value="vertical level 213, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 213" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_214" name="local_vertical_level_214" grib2_id="214" type="float">
<attribute name="description" value="vertical level 214, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 214" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_222" name="local_vertical_level_222" grib2_id="222" type="float">
<attribute name="description" value="vertical level 222, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 222" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_223" name="local_vertical_level_223" grib2_id="223" type="float">
<attribute name="description" value="vertical level 223, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 223" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_224" name="local_vertical_level_224" grib2_id="224" type="float">
<attribute name="description" value="vertical level 224, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 224" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_232" name="local_vertical_level_232" grib2_id="232" type="float">
<attribute name="description" value="vertical level 232, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 232" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_233" name="local_vertical_level_233" grib2_id="233" type="float">
<attribute name="description" value="vertical level 233, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 233" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_234" name="local_vertical_level_234" grib2_id="234" type="float">
<attribute name="description" value="vertical level 234, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 234" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_242" name="local_vertical_level_242" grib2_id="242" type="float">
<attribute name="description" value="vertical level 242, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 242" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_243" name="local_vertical_level_243" grib2_id="243" type="float">
<attribute name="description" value="vertical level 243, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 243" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
<vertical_axis id="local_vertical_level_244" name="local_vertical_level_244" grib2_id="244" type="float">
<attribute name="description" value="vertical level 244, defined locally, ask center" type="string" />
<attribute name="long_name" value="unknown vertical level 244" type="string" />
<attribute name="positive" value="up" type="string" />
</vertical_axis>
</axes>
<variables>
<!-- Pressure (1) -->
<parameter name="air_pressure_at_sea_level" type="float">
<grib1 indicatorOfParameter="1" typeOfLevel="103" levelNo="0"/>
<attribute name="long_name" value="Mean Sea Level Pressure (MSLP)" type="string" />
<attribute name="standard_name" value="air_pressure_at_sea_level" type="string" />
<attribute name="units" value="Pa" type="string" />
</parameter>
<parameter name="air_pressure_at_sea_level" type="float">
<grib1 indicatorOfParameter="151" typeOfLevel="1" levelNo="0"/>
<attribute name="long_name" value="Mean Sea Level Pressure (MSLP)" type="string" />
<attribute name="standard_name" value="air_pressure_at_sea_level" type="string" />
<attribute name="units" value="Pa" type="string" />
</parameter>
<parameter name="air_pressure_at_sea_level" type="float">
<grib2 discipline="0" parameterCategory="3" parameterNumber="1" typeOfLevel="101" levelNo="0"/>
<attribute name="long_name" value="Mean Sea Level Pressure (MSLP)" type="string" />
<attribute name="standard_name" value="air_pressure_at_sea_level" type="string" />
<attribute name="units" value="Pa" type="string" />
</parameter>
<parameter name="air_pressure_at_sea_level" type="float">
<grib2 discipline="0" parameterCategory="3" parameterNumber="192"/>
<attribute name="long_name" value="Mean Sea Level Pressure (MSLET)" type="string" />
<attribute name="standard_name" value="air_pressure_at_sea_level" type="string" />
<attribute name="units" value="Pa" type="string" />
</parameter>
<parameter name="surface_air_pressure" type="float">
<grib1 indicatorOfParameter="1" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Surface air pressure" type="string" />
<attribute name="standard_name" value="surface_air_pressure" type="string" />
<attribute name="units" value="Pa" type="string" />
</parameter>
<parameter name="surface_air_pressure" type="float">
<grib2 discipline="0" parameterCategory="3" parameterNumber="0" typeOfLevel="1" levelNo="0"/>
<grib1 indicatorOfParameter="134" typeOfLevel="1" levelNo="0"/>
<attribute name="long_name" value="Surface air pressure" type="string" />
<attribute name="standard_name" value="surface_air_pressure" type="string" />
<attribute name="units" value="Pa" type="string" />
</parameter>
<parameter name="air_pressure_ml" type="float">
<grib1 indicatorOfParameter="1" typeOfLevel="109"/>
<attribute name="long_name" value="Air pressure model levels" type="string" />
<attribute name="standard_name" value="air_pressure" type="string" />
<attribute name="units" value="Pa" type="string" />
</parameter>
<!-- Geopotential (6) -->
<parameter name="geopotential_pl" type="float">
<grib1 indicatorOfParameter="6" typeOfLevel="100"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<parameter name="geopotential_pl" type="float">
<grib1 indicatorOfParameter="129" typeOfLevel="100"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<parameter name="geopotential_pl" type="float">
<grib1 indicatorOfParameter="156" typeOfLevel="100"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<parameter name="surface_geopotential" type="float">
<grib1 indicatorOfParameter="6" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Surface geopotential (fis)" type="string" />
<attribute name="standard_name" value="surface_geopotential" type="string" />
<attribute name="units" value="m^2/s^2" type="string" />
</parameter>
<parameter name="geopotential" type="float">
<grib1 indicatorOfParameter="6" typeOfLevel="105"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<parameter name="geopotential_ml" type="float">
<grib1 indicatorOfParameter="6" typeOfLevel="109"/>
<attribute name="long_name" value="Geopotential model levels" type="string" />
<attribute name="standard_name" value="geopotential" type="string" />
<attribute name="units" value="m^2/s^2" type="string" />
</parameter>
<!-- Geopotential height (7) -->
<parameter name="geopotential_height" type="float">
<!-- multi-id for grib1 and grib2 -->
<!-- wmo -->
<grib1 indicatorOfParameter="7" gribTablesVersionNo="1"/>
<grib1 indicatorOfParameter="7" gribTablesVersionNo="2"/>
<grib1 indicatorOfParameter="7" gribTablesVersionNo="3"/>
<grib2 discipline="0" parameterCategory="3" parameterNumber="5" typeOfLevel="6"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="long_name" value="geopotential_height" type="string" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<parameter name="geopotential_height_pl" type="float">
<!-- multi-id for grib1 and grib2 -->
<grib2 discipline="0" parameterCategory="3" parameterNumber="5" typeOfLevel="100"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="long_name" value="geopotential_height" type="string" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<parameter name="freezing_level_altitude" type="float">
<grib2 discipline="0" parameterCategory="3" parameterNumber="5" typeOfLevel="4"/>
<attribute name="long_name" value="geopotential_height" type="string" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<parameter name="altitude" type="float">
<grib2 discipline="0" parameterCategory="3" parameterNumber="5" typeOfLevel="1" />
<grib1 indicatorOfParameter="7" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Orography (ZS)" type="string" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<parameter name="geopotential_height_pl" type="float">
<grib1 indicatorOfParameter="7" typeOfLevel="100"/>
<attribute name="long_name" value="Geopotential Height pressure levels" type="string" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<parameter name="geopotential_height_ml" type="float">
<grib1 indicatorOfParameter="7" typeOfLevel="109"/>
<attribute name="long_name" value="Geopotential height model levels" type="string" />
<attribute name="standard_name" value="geopotential_height" type="string" />
<attribute name="units" value="m" type="string" />
</parameter>
<!-- Temperature (11) -->
<parameter name="soil_temperature_sl" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="999"/>
<attribute name="long_name" value="Soil temperature from old ISBA" type="string" />
<attribute name="standard_name" value="soil_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_0m" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Surface temperature (T0M)" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="sea_surface_temperature" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="102" levelNo="0"/>
<attribute name="long_name" value="Sea Surface Temperature (SST)" type="string" />
<attribute name="standard_name" value="sea_surface_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_2m" type="float">
<grib1 indicatorOfParameter="167" typeOfLevel="1" levelNo="0"/>
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="2"/>
<grib2 discipline="0" parameterCategory="0" parameterNumber="0" typeOfLevel="103" levelNo="2"/>
<attribute name="long_name" value="Screen level temperature (T2M)" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_max_2m" type="float">
<grib1 indicatorOfParameter="167" typeOfLevel="1" levelNo="0"/>
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="2"/>
<grib2 discipline="0" parameterCategory="0" parameterNumber="4" typeOfLevel="103"/>
<attribute name="long_name" value="Screen level temperature (T2M)" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_min_2m" type="float">
<grib1 indicatorOfParameter="167" typeOfLevel="1" levelNo="0"/>
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="2"/>
<grib2 discipline="0" parameterCategory="0" parameterNumber="5" typeOfLevel="103"/>
<attribute name="long_name" value="Screen level temperature (T2M)" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<!--GFS-->
<parameter name="air_temperature_pl" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="100" />
<grib1 indicatorOfParameter="130" typeOfLevel="100" />
<grib2 discipline="0" parameterCategory="0" parameterNumber="0" typeOfLevel="100"/>
<attribute name="long_name" value="Air temperature pressure levels" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_ml" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="109" />
<attribute name="long_name" value="Air temperature model levels" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_ml" type="float">
<grib2 discipline="0" parameterCategory="0" parameterNumber="0" typeOfLevel="105" />
<attribute name="long_name" value="Air temperature model levels" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="TG1" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="800"/>
<attribute name="long_name" value="Soil temperature level 1" type="string" />
<attribute name="standard_name" value="soil_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="TG2" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="801"/>
<attribute name="long_name" value="Soil temperature level 2" type="string" />
<attribute name="standard_name" value="soil_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="TG3" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="803"/>
<attribute name="long_name" value="Soil temperature level 3" type="string" />
<attribute name="standard_name" value="soil_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="sea_surface_temperature_sea" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="760"/>
<attribute name="long_name" value="Sea Surface Temperature (SST)" type="string" />
<attribute name="standard_name" value="sea_surface_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="sea_surface_temperature_sea" type="float">
<grib1 indicatorOfParameter="34" typeOfLevel="1" levelNo="0"/>
<attribute name="long_name" value="Sea Surface Temperature (SST)" type="string" />
<attribute name="standard_name" value="sea_surface_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_0m_water" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="770"/>
<attribute name="long_name" value="Lake Surface Temperature (LST)" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_2m_water" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="772"/>
<attribute name="long_name" value="Lake screen level temperature (LST)" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_2m_nature" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="802"/>
<attribute name="long_name" value="Nature screen level temperature" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="air_temperature_2m_town" type="float">
<grib1 indicatorOfParameter="11" typeOfLevel="105" levelNo="950"/>
<attribute name="long_name" value="Town screen level temperature" type="string" />
<attribute name="standard_name" value="air_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<!-- Dewpoint Temperature (17) -->
<parameter name="dewpoint_temperature_2m" type="float">
<grib1 indicatorOfParameter="17" typeOfLevel="105" levelNo="2"/>
<attribute name="long_name" value="Dewpoint temperature (TD2M)" type="string" />
<attribute name="standard_name" value="dewpoint_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="dewpoint_temperature_2m" type="float">
<grib1 indicatorOfParameter="168" typeOfLevel="1" levelNo="0"/>
<attribute name="long_name" value="Dewpoint temperature (TD2M)" type="string" />
<attribute name="standard_name" value="dewpoint_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<parameter name="dewpoint_temperature_0m" type="float">
<grib1 indicatorOfParameter="17" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Dewpoint temperature (TD0M)" type="string" />
<attribute name="standard_name" value="dewpoint_temperature" type="string" />
<attribute name="units" value="K" type="string" />
</parameter>
<!-- Zonal wind (33) -->
<parameter name="x_wind_10m" type="float">
<grib1 indicatorOfParameter="33" typeOfLevel="105" levelNo="10"/>
<grib2 discipline="0" parameterCategory="2" parameterNumber="2" typeOfLevel="103" levelNo="10"/>
<grib1 indicatorOfParameter="165" typeOfLevel="1" levelNo="0"/>
<attribute name="long_name" value="Zonal 10 metre wind (U10M)" type="string" />
<attribute name="standard_name" value="x_wind" type="string" />
<attribute name="units" value="m/s" type="string" />
<spatial_vector direction="x,longitude" counterpart="y_wind_10m" />
</parameter>
<parameter name="x_wind_gust" type="float">
<grib1 indicatorOfParameter="162" typeOfLevel="105" levelNo="10"/>
<grib2 discipline="0" parameterCategory="2" parameterNumber="2" typeOfLevel="6"/>
<attribute name="long_name" value="Zonal 10 metre wind gust (U10M)" type="string" />
<attribute name="standard_name" value="x_wind_gust" type="string" />
<attribute name="units" value="m/s" type="string" />
<spatial_vector direction="x,longitude" counterpart="y_wind_gust" />
</parameter>
<parameter name="x_wind" type="float">
<grib1 indicatorOfParameter="33" typeOfLevel="105"/>
<attribute name="long_name" value="Zonal x metre wind (UxM)" type="string" />
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="x_wind" type="string" />
<attribute name="units" value="m s^-1" type="string" />
<spatial_vector direction="x,longitude" counterpart="y_wind" />
</parameter>
<parameter name="x_wind_pl" type="float">
<grib1 indicatorOfParameter="33" typeOfLevel="100"/>
<grib1 indicatorOfParameter="131" typeOfLevel="100"/>
<grib2 discipline="0" parameterCategory="2" parameterNumber="2" typeOfLevel="100"/>
<attribute name="long_name" value="Zonal wind pressure levels" type="string" />
<attribute name="standard_name" value="x_wind" type="string" />
<attribute name="units" value="m/s" type="string" />
<spatial_vector direction="x,longitude" counterpart="y_wind_pl" />
</parameter>
<parameter name="x_wind_ml" type="float">
<grib1 indicatorOfParameter="33" typeOfLevel="109"/>
<attribute name="long_name" value="Zonal wind model levels" type="string" />
<attribute name="standard_name" value="x_wind" type="string" />
<attribute name="units" value="m/s" type="string" />
<spatial_vector direction="x,longitude" counterpart="y_wind_ml" />
</parameter>
<!-- Meridional wind (34) -->
<parameter name="y_wind_10m" type="float">
<grib1 indicatorOfParameter="34" typeOfLevel="105" levelNo="10"/>
<grib1 indicatorOfParameter="166" typeOfLevel="1" levelNo="0"/>
<grib2 discipline="0" parameterCategory="2" parameterNumber="3" typeOfLevel="103" levelNo="10"/>
<attribute name="long_name" value="Meridional 10 metre wind (V10M)" type="string" />
<attribute name="standard_name" value="y_wind" type="string" />
<attribute name="units" value="m/s" type="string" />
<spatial_vector direction="y,latitude" counterpart="x_wind_10m" />
</parameter>
<parameter name="y_wind_gust" type="float">
<grib1 indicatorOfParameter="163" typeOfLevel="105" levelNo="10"/>
<grib2 discipline="0" parameterCategory="2" parameterNumber="3" typeOfLevel="6"/>
<attribute name="long_name" value="Meridional 10 metre wind gust (V10M)" type="string" />
<attribute name="standard_name" value="y_wind_gust" type="string" />
<attribute name="units" value="m/s" type="string" />
<spatial_vector direction="y,latitude" counterpart="x_wind_gust" />
</parameter>
<parameter name="y_wind" type="float">
<grib1 indicatorOfParameter="34" typeOfLevel="105"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="y_wind" type="string" />
<attribute name="units" value="m s^-1" type="string" />
<spatial_vector direction="y,latitude" counterpart="x_wind" />
</parameter>
<parameter name="y_wind_pl" type="float">
<grib1 indicatorOfParameter="34" typeOfLevel="100"/>
<grib1 indicatorOfParameter="132" typeOfLevel="100"/>
<grib2 discipline="0" parameterCategory="2" parameterNumber="3" typeOfLevel="100"/>
<attribute name="long_name" value="Meridional wind pressure levels" type="string" />
<attribute name="standard_name" value="y_wind" type="string" />
<attribute name="units" value="m/s" type="string" />
<spatial_vector direction="y,latitude" counterpart="x_wind_pl" />
</parameter>
<parameter name="y_wind_ml" type="float">
<grib1 indicatorOfParameter="34" typeOfLevel="109"/>
<attribute name="long_name" value="Meridional wind model levels" type="string" />
<attribute name="standard_name" value="y_wind" type="string" />
<attribute name="units" value="m/s" type="string" />
<spatial_vector direction="y,latitude" counterpart="x_wind_ml" />
</parameter>
<!-- Omega (39) -->
<parameter name="pressure_vertical_velocity" type="float">
<grib1 indicatorOfParameter="39" typeOfLevel="100" />
<attribute name="long_name" value="Pressure vertical velocity (Omega)" type="string" />
<attribute name="standard_name" value="pressure_vertical_velocity" type="string" />
<attribute name="units" value="pa/s" type="string" />
</parameter>
<parameter name="pressure_vertical_velocity" type="float">
<grib1 indicatorOfParameter="135" typeOfLevel="100" />
<attribute name="long_name" value="Pressure vertical velocity (Omega)" type="string" />
<attribute name="standard_name" value="pressure_vertical_velocity" type="string" />
<attribute name="units" value="pa/s" type="string" />
</parameter>
<parameter name="omega_pl" type="float">
<grib2 discipline="0" parameterCategory="2" parameterNumber="8" typeOfLevel="100" />
<attribute name="long_name" value="Pressure vertical velocity (Omega)" type="string" />
<attribute name="standard_name" value="lagrangian_tendency_of_air_pressure" type="string" />
<attribute name="units" value="Pa/s" type="string" />
</parameter>
<!-- Vertical wind (40) -->
<parameter name="upward_air_velocity_pl" type="float">
<grib1 indicatorOfParameter="40" typeOfLevel="100" />
<attribute name="long_name" value="Vertical vind pressure levels" type="string" />
<attribute name="standard_name" value="upward_air_velocity" type="string" />
<attribute name="units" value="m/s" type="string" />
</parameter>
<parameter name="upward_air_velocity_ml" type="float">
<grib1 indicatorOfParameter="40" typeOfLevel="109" />
<attribute name="long_name" value="Vertical vind model levels" type="string" />
<attribute name="standard_name" value="upward_air_velocity" type="string" />
<attribute name="units" value="m/s" type="string" />
</parameter>
<!-- Specific humidity (51) -->
<parameter name="specific_humidity_2m" type="float">
<grib1 indicatorOfParameter="51" typeOfLevel="105" levelNo="2"/>
<attribute name="long_name" value="Screen level specific humidity" type="string" />
<attribute name="standard_name" value="specific_humidity" type="string" />
<attribute name="units" value="kg/kg" type="string" />
</parameter>
<parameter name="specific_humidity" type="float">
<grib1 indicatorOfParameter="51" typeOfLevel="105"/>
<attribute name="long_name" value="Screen level specific humidity" type="string" />
<attribute name="standard_name" value="specific_humidity" type="string" />
<attribute name="units" value="kg/kg" type="string" />
</parameter>
<parameter name="specific_humidity_pl" type="float">
<grib1 indicatorOfParameter="51" typeOfLevel="100"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="specific_humidity" type="string" />
<attribute name="units" value="1" type="string" />
</parameter>
<parameter name="specific_humidity_pl" type="float">
<grib1 indicatorOfParameter="133" typeOfLevel="100"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="specific_humidity" type="string" />
<attribute name="units" value="1" type="string" />
</parameter>
<parameter name="specific_humidity_ml" type="float">
<grib1 indicatorOfParameter="51" typeOfLevel="109"/>
<attribute name="long_name" value="Specific humidity model levels" type="string" />
<attribute name="standard_name" value="specific_humidity" type="string" />
<attribute name="units" value="kg/kg" type="string" />
</parameter>
<parameter name="specific_humidity_ml" type="float">
<grib2 discipline="0" parameterCategory="1" parameterNumber="0" typeOfLevel="105"/>
<attribute name="long_name" value="Specific humidity model levels" type="string" />
<attribute name="standard_name" value="specific_humidity" type="string" />
<attribute name="units" value="kg/kg" type="string" />
</parameter>
<!-- Relative humidity (52) -->
<parameter name="relative_humidity_2m" type="float">
<grib2 discipline="0" parameterCategory="1" parameterNumber="1" typeOfLevel="103"/>
<grib1 indicatorOfParameter="52" typeOfLevel="105" levelNo="2"/>
<attribute name="long_name" value="Screen level relative humidity (RH2M)" type="string" />
<attribute name="standard_name" value="relative_humidity" type="string" />
<attribute name="units" value="1" type="string" />
</parameter>
<parameter name="relative_humidity" type="float">
<grib1 indicatorOfParameter="52" typeOfLevel="105"/>
<grib1 indicatorOfParameter="52" typeOfLevel="100"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="relative_humidity" type="string" />
<attribute name="units" value="1" type="string" />
</parameter>
<parameter name="relative_humidity_pl" type="float">
<grib1 indicatorOfParameter="157" typeOfLevel="100"/>
<grib2 discipline="0" parameterCategory="1" parameterNumber="1" typeOfLevel="100"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<attribute name="standard_name" value="relative_humidity" type="string" />
<attribute name="units" value="%" type="string" />
</parameter>
<parameter name="relative_humidity_ml" type="float">
<grib1 indicatorOfParameter="52" typeOfLevel="109"/>
<attribute name="long_name" value="Relative humidity model levels" type="string" />
<attribute name="standard_name" value="relative_humidity" type="string" />
<attribute name="units" value="1" type="string" />
</parameter>
<!-- Cloud ice (58) -->
<parameter name="atmosphere_cloud_ice_content_ml" type="float">
<grib1 indicatorOfParameter="58" typeOfLevel="109"/>
<attribute name="long_name" value="Cloud ice in model levels" type="string" />
<attribute name="standard_name" value="atmosphere_cloud_ice_content" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Mean precipitation (148) -->
<parameter name="pmean" type="float">
<grib1 indicatorOfParameter="148" gribTablesVersionNo="130" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Mean precipitation" type="string" />
<attribute name="standard_name" value="Mean_precipitation" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Median precipitation (149) -->
<parameter name="pmedian" type="float">
<grib1 indicatorOfParameter="149" gribTablesVersionNo="130" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Median precipitation" type="string" />
<attribute name="standard_name" value="Median_precipitation" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Min precipitation (142) -->
<parameter name="pmin" type="float">
<grib1 indicatorOfParameter="142" gribTablesVersionNo="130" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Min precipitation" type="string" />
<attribute name="standard_name" value="Min_precipitation" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Max precipitation (143) -->
<parameter name="pmax" type="float">
<grib1 indicatorOfParameter="143" gribTablesVersionNo="130" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Max precipitation" type="string" />
<attribute name="standard_name" value="Max_precipitation" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Total precipitation (61) -->
<parameter name="precipitation_amount_acc_6h" type="float">
<grib1 indicatorOfParameter="61" typeOfLevel="105" levelNo="0"/>
<grib2 discipline="0" parameterCategory="1" parameterNumber="8" typeOfLevel="1" levelNo="0">
<extraKey name="generatingProcessIdentifier" value="96" />
</grib2>
<attribute name="long_name" value="Accumulated total precipitation" type="string" />
<attribute name="standard_name" value="precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<parameter name="precipitation_amount_acc_gfs_eps" type="float">
<grib2 discipline="0" parameterCategory="1" parameterNumber="8" typeOfLevel="1" levelNo="0">
<extraKey name="generatingProcessIdentifier" value="107" />
</grib2>
<attribute name="long_name" value="Accumulated total precipitation" type="string" />
<attribute name="standard_name" value="precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<parameter name="precipitation_amount_acc_ecmwf" type="float">
<grib1 indicatorOfParameter="228" typeOfLevel="1" levelNo="0"/>
<attribute name="long_name" value="Accumulated total precipitation" type="string" />
<attribute name="standard_name" value="precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Frontal precipitation (62) -->
<parameter name="frontal_precipitation" type="float">
<grib1 indicatorOfParameter="62" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Frontal precipitation" type="string" />
<attribute name="standard_name" value="stratiform_precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Frontal snow precipitation (79) -->
<parameter name="frontal_snow_precipitation" type="float">
<grib1 indicatorOfParameter="79" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Frontal snow precipitation" type="string" />
<attribute name="standard_name" value="stratiform_snow_precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Frontal precipitation (142) -->
<parameter name="frontal_precipitation" type="float">
<grib1 indicatorOfParameter="142" typeOfLevel="1" levelNo="0"/>
<attribute name="long_name" value="Frontal precipitation" type="string" />
<attribute name="standard_name" value="stratiform_precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Convective precipitation (63) -->
<parameter name="aiv.accumprecip" type="float">
<grib1 indicatorOfParameter="63" gribTablesVersionNo="151" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Convective precipitation" type="string" />
<attribute name="standard_name" value="convective_precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<parameter name="convective_precipitation_amount_acc" type="float">
<grib1 indicatorOfParameter="63" typeOfLevel="105" levelNo="0"/>
<grib2 parameterCategory="1" parameterNumber="10" discipline="0" />
<attribute name="long_name" value="Convective precipitation" type="string" />
<attribute name="standard_name" value="convective_precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Convective snow precipitation (78) -->
<parameter name="convective_snow_precipitation" type="float">
<grib1 indicatorOfParameter="78" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Convective snow precipitation" type="string" />
<attribute name="standard_name" value="convective_snow_precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Convective precipitation (143) -->
<parameter name="convective_precipitation" type="float">
<grib1 indicatorOfParameter="143" typeOfLevel="1" levelNo="0"/>
<attribute name="long_name" value="Convective precipitation" type="string" />
<attribute name="standard_name" value="convective_precipitation_amount" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<!-- Water equivalent of accumulated snow depth (65) -->
<parameter name="liquid_water_content_of_surface_snow" type="float">
<grib1 indicatorOfParameter="65" typeOfLevel="105" levelNo="0"/>
<attribute name="long_name" value="Snow Water Equivivalent (SWE)" type="string" />
<attribute name="standard_name" value="liquid_water_content_of_surface_snow" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<parameter name="liquid_water_content_of_surface_snow" type="float">
<grib1 indicatorOfParameter="141" typeOfLevel="1" levelNo="0"/>
<attribute name="long_name" value="Snow Water Equivivalent (SWE)" type="string" />
<attribute name="standard_name" value="liquid_water_content_of_surface_snow" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<parameter name="liquid_water_content_of_surface_snow" type="float">
<grib1 indicatorOfParameter="13" typeOfLevel="105" levelNo="800"/>
<attribute name="long_name" value="Snow Water Equivivalent (SWE)" type="string" />
<attribute name="standard_name" value="liquid_water_content_of_surface_snow" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<parameter name="liquid_water_content_of_surface_snow" type="float">
<grib1 indicatorOfParameter="13" typeOfLevel="105" levelNo="800"/>
<attribute name="long_name" value="Snow Water Equivivalent (SWE)" type="string" />
<attribute name="standard_name" value="liquid_water_content_of_surface_snow" type="string" />
<attribute name="units" value="kg/m^2" type="string" />
</parameter>
<parameter name="precipitation_flux" type="float">
<grib2 discipline="0" parameterCategory="1" parameterNumber="7" typeOfLevel="1"/>
<attribute name="long_name" value="precipitation flux" type="string" />
<attribute name="standard_name" value="precipitation_flux" type="string" />
<attribute name="units" value="kg/m^2/s" type="string" />
</parameter>
<!-- For 3-LAYER snow scheme
<parameter name="WSNOW_VEG1" type="float">
<grib1 indicatorOfParameter="13" gribTablesVersionNo="1" typeOfLevel="105" levelNo="800"/>
<attribute name="standard" value="snow_amount" type="string" />
<attribute name="units" value="" type="string" />
</parameter>
<parameter name="WSNOW_VEG2" type="float">
<grib1 indicatorOfParameter="13" gribTablesVersionNo="1" typeOfLevel="105" levelNo="801"/>
<attribute name="standard" value="snow_amount" type="string" />
<attribute name="units" value="" type="string" />
</parameter>
<parameter name="WSNOW_VEG3" type="float">
<grib1 indicatorOfParameter="13" gribTablesVersionNo="1" typeOfLevel="105" levelNo="802"/>
<attribute name="standard" value="snow_amount" type="string" />
<attribute name="units" value="" type="string" />
</parameter>
-->
<!-- Not needed, just an example-->
<!--parameter name="cloud_cover" type="float"-->
<!-- multi-id for grib1 and grib2 -->
<!-- high clouds -->
<!--grib1 indicatorOfParameter="188" gribTablesVersionNo="128" /-->
<!-- medium clouds, sigma level-->
<!--grib1 typeOfLevel="107" indicatorOfParameter="187" gribTablesVersionNo="128" /-->
<!-- below examples allow omission of identificationOfOriginatingGeneratingCentre or gribTablesVersionNo -->
<!-- low clouds -->
<!--grib1 indicatorOfParameter="186" gribTablesVersionNo="128" /-->
<!-- fog -->
<!--grib1 indicatorOfParameter="248" /-->
<!-- <grib2 discipline="" parameterCategory="" parameterNumber=""/> -->
<!--attribute name="_FillValue" value="9.9692099683868690e+36" type="float" /-->
<!--attribute name="long_name" value="cloud coverage" type="string" /-->
<!--attribute name="units" value="%" type="string" /-->
<!--/parameter-->
<!-- Total cloud cover (71) -->
<parameter name="fog_area_fraction_2m" type="float">
<grib1 indicatorOfParameter="71" typeOfLevel="105" levelNo="2"/>
<attribute name="long_name" value="Total cloud cover (TCC)" type="string" />
<attribute name="standard_name" value="cloud_area_fraction" type="string" />
<attribute name="units" value="1" type="string" />
</parameter>
<parameter name="fog_area_fraction" type="float">
<grib1 indicatorOfParameter="71" gribTablesVersionNo="253" typeOfLevel="109" levelNo="65"/>
<attribute name="_FillValue" value="9.9692099683868690e+36" type="float" />
<!-- standard-name not ensured yet -->
<attribute name="long_name" value="Fog" type="string" />
<attribute name="standard_name" value="fog_area_fraction" type="string" />
<attribute name="units" value="1" type="string" />
</parameter>
<parameter name="low_type_cloud_area_fraction" type="float">
<grib2 parameterCatgory="6" discipline="0" parameterNumber="1" typeOfLevel="214" />
<attribute name="standard_name" value="low_type_cloud_area_fraction" type="string" />
<attribute name="units" value="%" type="string" />
</parameter>
<parameter name="medium_type_cloud_area_fraction" type="float">
<grib2 parameterCatgory="6" discipline="0" parameterNumber="1" typeOfLevel="224" />
<attribute name="standard_name" value="medium_type_cloud_area_fraction" type="string" />
<attribute name="units" value="%" type="string" />
</parameter>
<parameter name="high_type_cloud_area_fraction" type="float">
<grib2 parameterCatgory="6" discipline="0" parameterNumber="1" typeOfLevel="234" />
<attribute name="standard_name" value="high_type_cloud_area_fraction" type="string" />
<attribute name="units" value="%" type="string" />
</parameter>
<parameter name="convective_cloud_area_fraction" type="float">
<grib2 parameterCatgory="6" discipline="0" parameterNumber="1" typeOfLevel="244" />
<attribute name="standard_name" value="high_type_cloud_area_fraction" type="string" />
<attribute name="units" value="%" type="string" />
</parameter>
<parameter name="cloud_area_fraction" type="float">
<grib2 parameterCatgory="6" discipline="0" parameterNumber="1" typeOfLevel="10" />
<attribute name="standard_name" value="high_type_cloud_area_fraction" type="string" />
<attribute name="units" value="%" type="string" />