-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgrib2_all_tables_module.F90
2989 lines (2925 loc) · 134 KB
/
grib2_all_tables_module.F90
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
!> @file
!> @brief Define the variables in the derived data type discipline.
!> @author Jun Wang @date 2012/01/25
!> @brief Define the variables in the derived data type discipline
!> provided in Section 0.
!>
!> ### Program History Log
!> Date | Programmer | Comments
!> -----|------------|---------
!> 12/04/2009 | V. Krishna Kumar | Creation
!> 2012/01/25 | Jun Wang | Add template 4.44 and 4.48
!> 2012/02/20 | Jun Wang | Add complex packing
!> 2014/07/08 | Boi Vuong | Corrected Scaled value of second fixed surfaces in template 4.8 and Added generating process model HRRR
!> 2015/01/09 | Boi Vuong | Added template 4.1, 411 and 4.12 and update code tables routines: get_g2_typeof ensfcst, get_g2_typeofderivefcst
!> 2015/09/02 | Boi Vuong | Added 4 type of aerosols in table4_233
!> 2017/03/01 | Boi Vuong | Added generating process model (HREF and Great lake short range model in table on388_tablea
!> 2019/06/25 | Boi Vuong | Corrected tablec sub-center: Changed name: ncep_hpc to ncep_wpc; ncep_tpc to ncep_nhc; sec - swpc and aded new sub-center: esrl
!> 2019/06/25 | Boi Vuong | 17 Added new entries in table4_3,table4_5 and added new table4_8,table4_9,table 4_201 Added generating process model table on388_tablea
!> 2021/04/20 | Boi Vuong | Updated table 4.3, 4.5,4.7 and on388_tablea
!> 2023/03/30 | Andrew Benjamin | Added new entires to on388)_tablea
!> 2024/02/23 | Andrew Benjamin | Added new subcenter to on388)_tablec
!> 2024/12/20 | Alyson Stahl | Added multiple entries from 2024 WMO updates
!> 2025/02/14 | Andrew Benjamin | Added new processing ids to on388_tablea
!>
!> @author Jun Wang @date 2012/01/25
module grib2_all_tables_module
implicit none
!> maxsubcen
integer, parameter :: MAXSUBCEN=100
!> maxver
integer, parameter :: MAXVER=100
!> maxlocver
integer, parameter :: MAXLOCVER=20
!> maxreftime
integer, parameter :: MAXREFTIME=15
!> maxprodstatus
integer, parameter :: MAXPRODSTATUS=17
!> maxtypeofdata
integer, parameter :: MAXTYPEOFDATA=100
!> maxtypeofgenproc
integer, parameter :: MAXTYPEOFGENPROC=100
!> maxtypeofensfcst
integer, parameter :: MAXTYPEOFENSFCST=100
!> maxtypeofderivefcst
integer, parameter :: MAXTYPEOFDERIVEFCST=100
!> Max fixed surface types
integer, parameter :: MAXFIXEDSURFACETYPES=200
!> maxunitoftimerange
integer, parameter :: MAXUNITOFTIMERANGE=30
!> maxgenproc
integer, parameter :: MAXGENPROC=250
!> maxorigincenters
integer, parameter :: MAXORIGINCENTERS=500
!> maxtypeoforigfieldval
integer, parameter :: MAXTYPEOFORIGFIELDVAL=15
!> maxtypeofcompression
integer, parameter :: MAXTYPEOFCOMPRESSION=50
!> maxtypeofpackingmethod
integer, parameter :: MAXTYPEOFPACKINGMETHOD=50
!> maxstatprocesstypes
integer, parameter :: MAXSTATPROCESSTYPES=50
!> maxtypeoftimeintvls
integer, parameter :: MAXTYPEOFTIMEINTVLS=50
!> maxtypeofprob
integer, parameter :: MAXTYPEOFPROB=100
!> maxtypeofprecip
integer, parameter :: MAXTYPEOFPRECIP=100
!> maxtypeofcluster
integer, parameter :: MAXTYPEOFCLUSTER=100
!> maxtypeofaerosol
integer, parameter :: MAXTYPEOFAEROSOL=200
!> maxtypeofintvls
integer, parameter :: MAXTYPEOFINTVLS=50
!> maxordofsptdiff
integer, parameter :: MAXORDOFSPTDIFF=50
type subcenters
character(len=20) :: subcenkey
integer :: subcenval
end type subcenters
!> tablec
type(subcenters), dimension(MAXSUBCEN) :: tablec
data tablec(1) /subcenters('ncep_reanl',1)/
data tablec(2) /subcenters('ncep_ensem',2)/
data tablec(3) /subcenters('ncep_nco',3)/
data tablec(4) /subcenters('ncep_emc',4)/
data tablec(5) /subcenters('ncep_wpc',5)/
data tablec(6) /subcenters('ncep_opc',6)/
data tablec(7) /subcenters('ncep_cpc',7)/
data tablec(8) /subcenters('ncep_awc',8)/
data tablec(9) /subcenters('ncep_spc',9)/
data tablec(10) /subcenters('ncep_nhc',10)/
data tablec(11) /subcenters('nws_tdl',11)/
data tablec(12) /subcenters('nesdis_ora',12)/
data tablec(13) /subcenters('faa',13)/
data tablec(14) /subcenters('nws_mdl',14)/
data tablec(15) /subcenters('narr',15)/
data tablec(16) /subcenters('swpc',16)/
!
! Added Sub-Center (06/26/2019)
!
data tablec(17) /subcenters('esrl',17)/
! Added National Water Center Sub-Center (02/23/2024)
data tablec(18) /subcenters('nwc',18)/
type version_no
character(len=20) :: verskey
integer :: versval
end type version_no
!> Table 1 0
type(version_no),dimension(MAXVER) :: table1_0
data table1_0(1) /version_no('expt',0)/
data table1_0(2) /version_no('v2001',1)/
data table1_0(3) /version_no('v2003',2)/
data table1_0(4) /version_no('v2005',3)/
data table1_0(5) /version_no('v2007',4)/
data table1_0(6) /version_no('v2009',5)/
data table1_0(7) /version_no('v2010',6)/
data table1_0(8) /version_no('v052011',7)/
data table1_0(9) /version_no('v112011',8)/
data table1_0(10) /version_no('v052012',9)/
data table1_0(11) /version_no('v112012',10)/
data table1_0(12) /version_no('v052013',11)/
data table1_0(13) /version_no('v112013',12)/
data table1_0(14) /version_no('v052014',13)/
data table1_0(15) /version_no('v112014',14)/
data table1_0(16) /version_no('v052015',15)/
data table1_0(17) /version_no('v112015',16)/
data table1_0(18) /version_no('v052016',17)/
data table1_0(19) /version_no('v112016',18)/
data table1_0(20) /version_no('v052017',19)/
data table1_0(21) /version_no('v112017',20)/
data table1_0(22) /version_no('v052018',21)/
data table1_0(23) /version_no('v112018',22)/
data table1_0(24) /version_no('v052019',23)/
data table1_0(25) /version_no('v112019',24)/
data table1_0(26) /version_no('v052020',25)/
data table1_0(27) /version_no('v112020',26)/
data table1_0(28) /version_no('v052021',27)/
data table1_0(29) /version_no('v112021',28)/
!
! Added Version Number (12/20/2024)
!
data table1_0(30) /version_no('v052022',29)/
data table1_0(31) /version_no('v112022',30)/
data table1_0(32) /version_no('v062023',31)/
data table1_0(33) /version_no('v112023',32)/
data table1_0(34) /version_no('preoper',33)/
!
!
type local_table_vers_no
character(len=20) :: locverskey
integer :: locversval
end type local_table_vers_no
!> Table 1 1
type(local_table_vers_no),dimension(MAXLOCVER) :: table1_1
!
data table1_1(1) /local_table_vers_no('local_tab_no',0)/
data table1_1(2) /local_table_vers_no('local_tab_yes1',1)/
data table1_1(3) /local_table_vers_no('local_tab_yes2',2)/
data table1_1(4) /local_table_vers_no('local_tab_yes3',3)/
data table1_1(5) /local_table_vers_no('local_tab_yes4',4)/
data table1_1(6) /local_table_vers_no('local_tab_yes5',5)/
data table1_1(7) /local_table_vers_no('missing',255)/
!
!
type sigreftime
character(len=20) :: sigrefkey
integer :: sigrefval
end type sigreftime
! Declare a variable of type discipline
!> Table 1 2
type(sigreftime),dimension(MAXREFTIME) :: table1_2
data table1_2(1) /sigreftime('anal',0)/
data table1_2(2) /sigreftime('fcst',1)/
data table1_2(3) /sigreftime('vfcst',2)/
data table1_2(4) /sigreftime('obstime',3)/
data table1_2(5) /sigreftime('missing',255)/
!
! Added Significance of Ref Time (12/20/2024)
!
data table1_2(6) /sigreftime('local',4)/
data table1_2(7) /sigreftime('sim_start',5)/
!
!
type prod_status
character(len=20) :: prodstatuskey
integer :: prodstatusval
end type prod_status
! Declare a variable of type discipline
!> Table 1 3
type(prod_status),dimension(MAXPRODSTATUS) :: table1_3
data table1_3(1) /prod_status('oper',0)/
data table1_3(2) /prod_status('oper_test',1)/
data table1_3(3) /prod_status('res',2)/
data table1_3(4) /prod_status('reanal',3)/
data table1_3(5) /prod_status('tigge',4)/
data table1_3(6) /prod_status('tigge_test',5)/
data table1_3(7) /prod_status('missing',255)/
data table1_3(8) /prod_status('s2s_oper',6)/
data table1_3(9) /prod_status('s2s_test',7)/
data table1_3(10) /prod_status('unens_rreanl',8)/
data table1_3(11) /prod_status('unens_rreanl_test',9)/
!
! Added Production Status (12/20/2024)
!
data table1_3(12) /prod_status('copernic_rreanl',10)/
data table1_3(13) /prod_status('copernic_rreanl_test',11)/
data table1_3(14) /prod_status('dest_earth',12)/
data table1_3(15) /prod_status('dest_earth_test',13)/
!
!
type type_of_data
character(len=20) :: typeofdatakey
integer :: typeofdataval
end type type_of_data
!
!> table1_4
type(type_of_data),dimension(MAXTYPEOFDATA) :: table1_4
data table1_4(1) /type_of_data('anal',0)/
data table1_4(2) /type_of_data('fcst',1)/
data table1_4(3) /type_of_data('anal_fcst',2)/
data table1_4(4) /type_of_data('con_fcst',3)/
data table1_4(5) /type_of_data('per_fcst',4)/
data table1_4(6) /type_of_data('con_per_fcst',5)/
data table1_4(7) /type_of_data('proc_sat_obs',6)/
data table1_4(8) /type_of_data('proc_rad_obs',7)/
data table1_4(9) /type_of_data('event_prob',8)/
data table1_4(10) /type_of_data('missing',255)/
data table1_4(11) /type_of_data('experimental_product',192)/
!
!
type type_of_gen_proc
character(len=30) :: typeofgenprockey
integer :: typeofgenprocval
end type type_of_gen_proc
! 2015/09/02 Boi Vuong Added 4 type of aerosols in table4_233
! 2019/06/25 Boi Vuong Added new entries 197,198,199 in table4_3
!
!> table4_3
type(type_of_gen_proc),dimension(MAXTYPEOFGENPROC) :: table4_3
data table4_3(1) /type_of_gen_proc('anal',0)/
data table4_3(2) /type_of_gen_proc('init',1)/
data table4_3(3) /type_of_gen_proc('fcst',2)/
data table4_3(4) /type_of_gen_proc('bias_corr_fcst',3)/
data table4_3(5) /type_of_gen_proc('ens_fcst',4)/
data table4_3(6) /type_of_gen_proc('prob_fcst',5)/
data table4_3(7) /type_of_gen_proc('fcst_err',6)/
data table4_3(8) /type_of_gen_proc('anal_err',7)/
data table4_3(9) /type_of_gen_proc('obs',8)/
data table4_3(10) /type_of_gen_proc('clim',9)/
data table4_3(11) /type_of_gen_proc('prob_wt_fcst',10)/
data table4_3(12) /type_of_gen_proc('fcst_con_ind',192)/
data table4_3(13) /type_of_gen_proc('bias_corr_ens_fcst',11)/
data table4_3(14) /type_of_gen_proc('missing',255)/
data table4_3(15) /type_of_gen_proc('post_proc_anal',12)/
data table4_3(16) /type_of_gen_proc('post_proc_fcst',13)/
data table4_3(17) /type_of_gen_proc('nowcast',14)/
data table4_3(18) /type_of_gen_proc('hincsast',15)/
data table4_3(19) /type_of_gen_proc('physical_retrieval',16)/
data table4_3(20) /type_of_gen_proc('regression_analysis',17)/
data table4_3(21) /type_of_gen_proc('difference_two_forecasts',18)/
data table4_3(22) /type_of_gen_proc('prob_matched_mean',193)/
data table4_3(23) /type_of_gen_proc('neighborhood_prob',194)/
data table4_3(24) /type_of_gen_proc('bias_corrected_downscale',195)/
data table4_3(25) /type_of_gen_proc('perturbed_analysis',196)/
!
! Added Generating Process (06/26/2019)
!
data table4_3(26) /type_of_gen_proc('ens_scale_prob',197)/
data table4_3(27) /type_of_gen_proc('post_dew_fcst',198)/
data table4_3(28) /type_of_gen_proc('ens_fcst_base',199)/
!
! Added Generating Process (04/20/2021)
!
data table4_3(29) /type_of_gen_proc('local_prob_match_mean',200)/
!
! Added Generating Process (12/20/2024)
!
data table4_3(30) /type_of_gen_proc('first_guess',19)/
data table4_3(31) /type_of_gen_proc('anal_inc',20)/
data table4_3(32) /type_of_gen_proc('init_inc',21)/
!
!
type unit_of_time_range
character(len=30) :: unitoftimerangekey
integer :: unitoftimerangeval
end type unit_of_time_range
!
!> table4_4
type(unit_of_time_range),dimension(MAXUNITOFTIMERANGE) :: table4_4
data table4_4(1) /unit_of_time_range('minute',0)/
data table4_4(2) /unit_of_time_range('hour',1)/
data table4_4(3) /unit_of_time_range('day',2)/
data table4_4(4) /unit_of_time_range('month',3)/
data table4_4(5) /unit_of_time_range('year',4)/
data table4_4(6) /unit_of_time_range('decade',5)/
data table4_4(7) /unit_of_time_range('normal_30y',6)/
data table4_4(8) /unit_of_time_range('century',7)/
data table4_4(9) /unit_of_time_range('3hours',10)/
data table4_4(10) /unit_of_time_range('6hours',11)/
data table4_4(11) /unit_of_time_range('12hours',12)/
data table4_4(12) /unit_of_time_range('second',13)/
data table4_4(13) /unit_of_time_range('missing',255)/
!
!
type fixed_surface_types
character(len=80) :: fixedsurfacetypeskey
integer :: fixedsurfacetypesval
end type fixed_surface_types
!
!> table4_5
type(fixed_surface_types),dimension(MAXFIXEDSURFACETYPES) :: table4_5
data table4_5(1) /fixed_surface_types('surface',1)/
data table4_5(2) /fixed_surface_types('cloud_base',2)/
data table4_5(3) /fixed_surface_types('cloud_top',3)/
data table4_5(4) /fixed_surface_types('0C_isotherm',4)/
data table4_5(5) /fixed_surface_types('lvl_of_adiab_cond_from_sfc',5)/
data table4_5(6) /fixed_surface_types('max_wind',6)/
data table4_5(7) /fixed_surface_types('tropopause',7)/
data table4_5(8) /fixed_surface_types('top_of_atmos',8)/
data table4_5(9) /fixed_surface_types('sea_bottom',9)/
data table4_5(10) /fixed_surface_types('entire_atmos',10)/
data table4_5(11) /fixed_surface_types('cb_base',11)/
data table4_5(12) /fixed_surface_types('cb_top',12)/
data table4_5(13) /fixed_surface_types('isothermal',20)/
data table4_5(14) /fixed_surface_types('isobaric_sfc',100)/
data table4_5(15) /fixed_surface_types('mean_sea_lvl',101)/
data table4_5(16) /fixed_surface_types('spec_alt_above_mean_sea_lvl',102)/
data table4_5(17) /fixed_surface_types('spec_hgt_lvl_above_grnd',103)/
data table4_5(18) /fixed_surface_types('sigma_lvl',104)/
data table4_5(19) /fixed_surface_types('hybrid_lvl',105)/
data table4_5(20) /fixed_surface_types('depth_bel_land_sfc',106)/
data table4_5(21) /fixed_surface_types('isentropic_lvl',107)/
data table4_5(22) /fixed_surface_types('spec_pres_above_grnd',108)/
data table4_5(23) /fixed_surface_types('pot_vort_sfc',109)/
data table4_5(24) /fixed_surface_types('eta_lvl',111)/
data table4_5(25) /fixed_surface_types('mixed_lyr_depth',117)/
data table4_5(26) /fixed_surface_types('depth_below_sea_lvl',160)/
data table4_5(27) /fixed_surface_types('entire_atmos_single_lyr',200)/
data table4_5(28) /fixed_surface_types('entire_ocean_single_lyr',201)/
data table4_5(29) /fixed_surface_types('hghst_trop_frz_lvl',204)/
data table4_5(30) /fixed_surface_types('grid_scale_cloud_bot_lvl',206)/
data table4_5(31) /fixed_surface_types('grid_scale_cloud_top_lvl',207)/
data table4_5(32) /fixed_surface_types('bound_lyr_cloud_bot_lvl',209)/
data table4_5(33) /fixed_surface_types('bound_lyr_cloud_top_lvl',210)/
data table4_5(34) /fixed_surface_types('bound_lyr_cloud_lyr',211)/
data table4_5(35) /fixed_surface_types('low_cloud_bot_lvl',212)/
data table4_5(36) /fixed_surface_types('low_cloud_top_lvl',213)/
data table4_5(37) /fixed_surface_types('low_cloud_lyr',214)/
data table4_5(38) /fixed_surface_types('cloud_ceilng',215)/
data table4_5(39) /fixed_surface_types('planetary_bound_lyr',220)/
data table4_5(40) /fixed_surface_types('lyr_betwn_2hybrid_lvls',221)/
data table4_5(41) /fixed_surface_types('mid_cloud_bot_lvl',222)/
data table4_5(42) /fixed_surface_types('mid_cloud_top_lvl',223)/
data table4_5(43) /fixed_surface_types('mid_cloud_lyr',224)/
data table4_5(44) /fixed_surface_types('high_cloud_bot_lvl',232)/
data table4_5(45) /fixed_surface_types('high_cloud_top_lvl',233)/
data table4_5(46) /fixed_surface_types('high_cloud_lyr',234)/
data table4_5(47) /fixed_surface_types('ocean_isotherm_lvl',235)/
data table4_5(48) /fixed_surface_types('lyr_betwn_2depths_below_ocean_sfc',236)/
data table4_5(49) /fixed_surface_types('bot_of_ocean_mix_lyr',237)/
data table4_5(50) /fixed_surface_types('bot_of_ocean_isoth_lyr',238)/
data table4_5(51) /fixed_surface_types('lyr_ocean_sfc_26c_ocean_isotherm_lvl',239)/
data table4_5(52) /fixed_surface_types('ocean_mix_lyr',240)/
data table4_5(53) /fixed_surface_types('ordered_seq_of_data',241)/
data table4_5(54) /fixed_surface_types('convective_cloud_bot_lvl',242)/
data table4_5(55) /fixed_surface_types('convective_cloud_top_lvl',243)/
data table4_5(56) /fixed_surface_types('convective_cloud_lyr',244)/
data table4_5(57) /fixed_surface_types('lwst_lvl_of_wet_bulb_zero',245)/
data table4_5(58) /fixed_surface_types('max_equiv_pot_temp_lvl',246)/
data table4_5(59) /fixed_surface_types('equil_lvl',247)/
data table4_5(60) /fixed_surface_types('shall_convective_cloud_bot_lvl',248)/
data table4_5(61) /fixed_surface_types('shall_convective_cloud_top_lvl',249)/
data table4_5(62) /fixed_surface_types('deep_convective_cloud_bot_lvl',251)/
data table4_5(63) /fixed_surface_types('deep_convective_cloud_top_lvl',252)/
data table4_5(64) /fixed_surface_types('lwst_bot_lvl_of_supercooled_liq_water_lyr',253)/
data table4_5(65) /fixed_surface_types('hghst_top_lvl_of_supercooled_liq_water_lyr',254)/
data table4_5(66) /fixed_surface_types('missing',255)/
data table4_5(67) /fixed_surface_types('hybrid_height_lvl',118)/
data table4_5(68) /fixed_surface_types('hybrid_pres_lvl',119)/
data table4_5(69) /fixed_surface_types('gen_vertical_height_coor',150)/
data table4_5(70) /fixed_surface_types('depth_below_water_lvl',161)/
data table4_5(71) /fixed_surface_types('lake_or_river_bottom',162)/
data table4_5(72) /fixed_surface_types('bottom_of_sediment_layer',163)/
data table4_5(73) /fixed_surface_types('bottom_of_therm_sediment_layer',164)/
data table4_5(74) /fixed_surface_types('bottom_of_sediment_layer_thermal_wave',165)/
data table4_5(75) /fixed_surface_types('maxing_layer',166)/
data table4_5(76) /fixed_surface_types('bottom_root_zone',167)/
data table4_5(77) /fixed_surface_types('topsfc_ice_onsealakeriver',174)/
data table4_5(78) /fixed_surface_types('topsfc_ice_unsnow_onsealakeriver',175)/
data table4_5(79) /fixed_surface_types('bottomsfc_ice_onsealakeriver',176)/
data table4_5(80) /fixed_surface_types('deep_soil',177)/
data table4_5(81) /fixed_surface_types('topsfc_glacierice_inlandice',179)/
data table4_5(82) /fixed_surface_types('deepinland_glacierice',180)/
data table4_5(83) /fixed_surface_types('gridtile_landfrac',181)/
data table4_5(84) /fixed_surface_types('gridtile_waterfrac',182)/
data table4_5(85) /fixed_surface_types('gridtile_icefrac_onsealakeriver',183)/
data table4_5(86) /fixed_surface_types('gridtile_glacierice_inland_icefrac',184)/
data table4_5(87) /fixed_surface_types('lowest_level_vertical_icc',13)/
data table4_5(88) /fixed_surface_types('level_free_convection',14)/
data table4_5(89) /fixed_surface_types('covection_conden_level',15)/
data table4_5(90) /fixed_surface_types('level_neutral_buoy',16)/
data table4_5(91) /fixed_surface_types('soil_level',151)/
!
! Added fixed surface levels (06/26/2019)
!
data table4_5(92) /fixed_surface_types('lowest_mass_den',21)/
data table4_5(93) /fixed_surface_types('highest_mass_den',22)/
data table4_5(94) /fixed_surface_types('lowest_air_con',23)/
data table4_5(95) /fixed_surface_types('highest_air_con',24)/
data table4_5(96) /fixed_surface_types('highest_rref',25)/
data table4_5(97) /fixed_surface_types('log_hyb_lev',113)/
data table4_5(98) /fixed_surface_types('snow_lev',114)/
data table4_5(100) /fixed_surface_types('sigma_hi_lev',115)/
!
! Added fixed surface levels (04/20/2021)
!
data table4_5(101) /fixed_surface_types('ocean_model_level',168)/
data table4_5(102) /fixed_surface_types('ocean_level_water_density',169)/
data table4_5(103) /fixed_surface_types('ocean_level_water_potential_temp',170)/
data table4_5(104) /fixed_surface_types('eff_layer_top_level',216)/
data table4_5(105) /fixed_surface_types('eff_layer_bottom_level',217)/
data table4_5(106) /fixed_surface_types('eff_layer',218)/
!
! Added fixed surface levels (12/20/2024)
!
data table4_5(107) /fixed_surface_types('dep_level_unstable_parcel_air',17)/
data table4_5(108) /fixed_surface_types('dep_level_mixed_parcel_air',18)/
data table4_5(109) /fixed_surface_types('lowest_cloud_cover',19)/
data table4_5(110) /fixed_surface_types('conv_cloud_base',26)/
data table4_5(111) /fixed_surface_types('conv_cloud_top',27)/
data table4_5(112) /fixed_surface_types('spec_rad_centre_sun',30)/
data table4_5(113) /fixed_surface_types('solar_photosphere',31)/
data table4_5(114) /fixed_surface_types('ion_d_region_lev',32)/
data table4_5(115) /fixed_surface_types('ion_e_region_lev',33)/
data table4_5(116) /fixed_surface_types('ion_f1_region_lev',34)/
data table4_5(117) /fixed_surface_types('ion_f2_region_lev',35)/
data table4_5(118) /fixed_surface_types('sea_ice_lev',152)/
data table4_5(119) /fixed_surface_types('ocean_level_vert_eddy_diffus',171)/
data table4_5(120) /fixed_surface_types('ocean_level_rho_diff',172)/
data table4_5(121) /fixed_surface_types('top_snow_over_sea_ice',173)/
data table4_5(122) /fixed_surface_types('roof_lev',185)/
data table4_5(123) /fixed_surface_types('wall_lev',186)/
data table4_5(124) /fixed_surface_types('road_lev',187)/
data table4_5(125) /fixed_surface_types('melt_pond_top_surf',188)/
data table4_5(126) /fixed_surface_types('melt_pond_bottom_surf',189)/
!
!
type type_of_ens_fcst
character(len=50) :: typeofensfcstkey
integer :: typeofensfcstval
end type type_of_ens_fcst
!
!> table4_6
type(type_of_ens_fcst),dimension(MAXTYPEOFENSFCST) :: table4_6
data table4_6(1) /type_of_ens_fcst('unpert_hi_res_ctrl_fcst',0)/
data table4_6(2) /type_of_ens_fcst('unpert_lo_res_ctrl_fcst',1)/
data table4_6(3) /type_of_ens_fcst('neg_pert_fcst',2)/
data table4_6(4) /type_of_ens_fcst('pos_pert_fcst',3)/
data table4_6(5) /type_of_ens_fcst('multi_model_fcst',4)/
data table4_6(6) /type_of_ens_fcst('pert_ens_member',192)/
!
!
type type_of_derive_fcst
character(len=50) :: typeofderivefcstkey
integer :: typeofderivefcstval
end type type_of_derive_fcst
!
!> table4_7
type(type_of_derive_fcst),dimension(MAXTYPEOFDERIVEFCST) :: table4_7
data table4_7(1) /type_of_derive_fcst('unweighted_mean_all_mem',0)/
data table4_7(2) /type_of_derive_fcst('weighted_mean_all_mem',1)/
data table4_7(3) /type_of_derive_fcst('std_devn_res_cluster_mean',2)/
data table4_7(4) /type_of_derive_fcst('std_devn_res_cluster_mean_norm',3)/
data table4_7(5) /type_of_derive_fcst('spread_all_mem',4)/
data table4_7(6) /type_of_derive_fcst('large_anomaly_index',5)/
data table4_7(7) /type_of_derive_fcst('unweighted_mean_cluster',6)/
data table4_7(8) /type_of_derive_fcst('interquartile_range',7)/
data table4_7(9) /type_of_derive_fcst('min_all_ens_mem',8)/
data table4_7(10) /type_of_derive_fcst('max_all_ens_mem',9)/
data table4_7(11) /type_of_derive_fcst('unweighted_mode_all_mem',192)/
data table4_7(12) /type_of_derive_fcst('percentile_val_10',193)/
data table4_7(13) /type_of_derive_fcst('percentile_val_50',194)/
data table4_7(14) /type_of_derive_fcst('percentile_val_90',195)/
data table4_7(15) /type_of_derive_fcst('stat_decide_mem',196)/
data table4_7(16) /type_of_derive_fcst('clim_percentile',197)/
data table4_7(17) /type_of_derive_fcst('deviation_ens_mean',198)/
data table4_7(18) /type_of_derive_fcst('extream_forecast_index',199)/
!
! Added type of derive forecast (04/20/2021)
!
data table4_7(19) /type_of_derive_fcst('equally_weighted_mean',200)/
data table4_7(20) /type_of_derive_fcst('percentile_value_5',201)/
data table4_7(21) /type_of_derive_fcst('percentile_value_25',202)/
data table4_7(22) /type_of_derive_fcst('percentile_value_75',203)/
data table4_7(23) /type_of_derive_fcst('percentile_value_95',204)/
!
! Added type of derive forecast (12/20/2024)
!
data table4_7(24) /type_of_derive_fcst('var_all_ens_mem',10)/
!
!
! Added Clustering Method Table 4.8 (06/26/2019)
!
type type_of_cluster
character(len=80) :: typeofclusterkey
integer :: typeofclusterval
end type type_of_cluster
!
!> table4_8
type(type_of_cluster),dimension(MAXTYPEOFCLUSTER) :: table4_8
data table4_8(1) /type_of_cluster('anomoly_correlation',0)/
data table4_8(2) /type_of_cluster('root_mean_square',1)/
!
!
! Added Probability Type Table 4.9 (06/26/2019)
!
type type_of_prob
character(len=80) :: typeofprobkey
integer :: typeofprobval
end type type_of_prob
!
!> table4_9
type(type_of_prob),dimension(MAXTYPEOFPROB) :: table4_9
data table4_9(1) /type_of_prob('prob_below_lower_limit',0)/
data table4_9(2) /type_of_prob('prob_above_upper_limit',1)/
data table4_9(3) /type_of_prob('prob_between_upper_lower_limit',2)/
data table4_9(4) /type_of_prob('prob_above_lower_limit',3)/
data table4_9(5) /type_of_prob('prob_below_upper_limit',4)/
data table4_9(6) /type_of_prob('prob_equal_lower_limit',5)/
data table4_9(7) /type_of_prob('prob_above_normal_cat',6)/
data table4_9(8) /type_of_prob('prob_near_normal_cat',7)/
data table4_9(9) /type_of_prob('prob_below_normal_cat',8)/
!
! Added Probability Type (12/20/2024)
!
data table4_9(10) /type_of_prob('prob_counts_cat_boolean',9)/
!
!
type statistical_processing_types
character(len=80) :: statprocesstypeskey
integer :: statprocesstypesval
end type statistical_processing_types
!
!> table4_10
type(statistical_processing_types),dimension(MAXSTATPROCESSTYPES) :: table4_10
data table4_10(1) /statistical_processing_types('AVE',0)/
data table4_10(2) /statistical_processing_types('ACM',1)/
data table4_10(3) /statistical_processing_types('MAX',2)/
data table4_10(4) /statistical_processing_types('MIN',3)/
data table4_10(5) /statistical_processing_types('diff_end-beg',4)/
data table4_10(6) /statistical_processing_types('rms',5)/
data table4_10(7) /statistical_processing_types('std_devn',6)/
data table4_10(8) /statistical_processing_types('covariance',7)/
data table4_10(9) /statistical_processing_types('diff_beg-end',8)/
data table4_10(10) /statistical_processing_types('ratio',9)/
data table4_10(11) /statistical_processing_types('std_anomaly',10)/
data table4_10(12) /statistical_processing_types('clim_mean',192)/
data table4_10(13) /statistical_processing_types('ave_n_fcsts',193)/
data table4_10(14) /statistical_processing_types('ave_n_unin_anal',194)/
data table4_10(15) /statistical_processing_types('ave_fcst_acc_24',195)/
data table4_10(16) /statistical_processing_types('ave_succ_fcst_acc',196)/
data table4_10(17) /statistical_processing_types('ave_fcst_ave_24',197)/
data table4_10(18) /statistical_processing_types('ave_succ_fcst_ave',198)/
data table4_10(19) /statistical_processing_types('clim_ave_n_anal',199)/
data table4_10(20) /statistical_processing_types('clim_ave_n_fcst',200)/
data table4_10(21) /statistical_processing_types('clim_rms_diff',201)/
data table4_10(22) /statistical_processing_types('clim_std_n_fcst',202)/
data table4_10(23) /statistical_processing_types('clim_std_n_anal',203)/
data table4_10(24) /statistical_processing_types('ave_fcst_acc_6',204)/
data table4_10(25) /statistical_processing_types('ave_fcst_ave_6',205)/
data table4_10(26) /statistical_processing_types('ave_fcst_acc_12',206)/
data table4_10(27) /statistical_processing_types('ave_fcst_ave_12',207)/
data table4_10(28) /statistical_processing_types('missing',255)/
data table4_10(29) /statistical_processing_types('summation',11)/
data table4_10(30) /statistical_processing_types('confidence_index',12)/
data table4_10(31) /statistical_processing_types('quality_indicator',13)/
data table4_10(32) /statistical_processing_types('variance',208)/
data table4_10(33) /statistical_processing_types('confficient',209)/
!
! Added Statistical Processing Type (12/20/2024)
!
data table4_10(34) /statistical_processing_types('severity',100)/
data table4_10(35) /statistical_processing_types('mode',101)/
data table4_10(36) /statistical_processing_types('index_proc',102)/
!
!
type type_of_time_intervals
character(len=80) :: typeoftimeintervalskey
integer :: typeoftimeintervalsval
end type type_of_time_intervals
!
!> table4_11
type(type_of_time_intervals),dimension(MAXTYPEOFTIMEINTVLS) :: table4_11
data table4_11(1) /type_of_time_intervals('reserved',0)/
data table4_11(2) /type_of_time_intervals('same_fcst_time_start_time_fcst_inc',1)/
data table4_11(3) /type_of_time_intervals('same_start_time_fcst_fcst_time_inc',2)/
data table4_11(4) /type_of_time_intervals('start_time_fcst_inc_fcst_time_dec',3)/
data table4_11(5) /type_of_time_intervals('start_time_fcst_dec_fcst_time_inc',4)/
data table4_11(6) /type_of_time_intervals('fltng_time_betwn_fcst_time_end_time_intvl',5)/
data table4_11(7) /type_of_time_intervals('local1',192)/
data table4_11(8) /type_of_time_intervals('local2',193)/
data table4_11(9) /type_of_time_intervals('local3',194)/
data table4_11(10) /type_of_time_intervals('missing',255)/
!
!
type type_of_intervals
character(len=80) :: typeofintervalskey
integer :: typeofintervalsval
end type type_of_intervals
!
!> table4_91
type(type_of_intervals),dimension(MAXTYPEOFINTVLS) :: table4_91
data table4_91(1) /type_of_intervals('smaller_than_first_limit',0)/
data table4_91(2) /type_of_intervals('greater_than_second_limit',1)/
data table4_91(3) /type_of_intervals('between_first_second_limit_noincl2ndlmt',2)/
data table4_91(4) /type_of_intervals('greater_than_first_limit',3)/
data table4_91(5) /type_of_intervals('smaller_than_second_limit',4)/
data table4_91(6) /type_of_intervals('smaller_or_equal_first_limit',5)/
data table4_91(7) /type_of_intervals('greater_or_equal_second_limit',6)/
data table4_91(8) /type_of_intervals('between_first_second_limit',7)/
data table4_91(9) /type_of_intervals('greater_or_equal_first_limit',8)/
data table4_91(10) /type_of_intervals('smaller_or_equal_second_limit',9)/
data table4_91(11) /type_of_intervals('between_first_second_limit_noincl1stlmt',10)/
data table4_91(12) /type_of_intervals('equall_to_first_limit',11)/
data table4_91(13) /type_of_intervals('missing',255)/
!
! Added Precipitation Table 4.201 (06/26/2019)
!
type type_of_precip
character(len=80) :: typeofprecipkey
integer :: typeofprecipval
end type type_of_precip
!
!> table4_201
type(type_of_precip),dimension(MAXTYPEOFPRECIP) :: table4_201
data table4_201(1) /type_of_precip('reserved',0)/
data table4_201(2) /type_of_precip('rain',1)/
data table4_201(3) /type_of_precip('thunderstorm',2)/
data table4_201(4) /type_of_precip('freezing_rain',3)/
data table4_201(5) /type_of_precip('mixed_ice',4)/
data table4_201(6) /type_of_precip('snow',5)/
data table4_201(7) /type_of_precip('wet_snow',6)/
data table4_201(8) /type_of_precip('mixture_rain_snow',7)/
data table4_201(91) /type_of_precip('ice_pellets',8)/
data table4_201(10) /type_of_precip('graupel',9)/
data table4_201(11) /type_of_precip('hail',10)/
data table4_201(12) /type_of_precip('drizzle',11)/
data table4_201(13) /type_of_precip('freezing_drizzle',12)/
!
!
type type_of_aerosol
character(len=80) :: typeofaerosolkey
integer :: typeofaerosolval
end type type_of_aerosol
!
!> table4_233
type(type_of_aerosol),dimension(MAXTYPEOFAEROSOL) :: table4_233
data table4_233(1) /type_of_aerosol('ozone',0)/
data table4_233(2) /type_of_aerosol('water_vapor',1)/
data table4_233(3) /type_of_aerosol('methane',2)/
data table4_233(4) /type_of_aerosol('carbon_dioxide',3)/
data table4_233(5) /type_of_aerosol('carbon_monoxide',4)/
data table4_233(6) /type_of_aerosol('nitrogen_dioxide',5)/
data table4_233(7) /type_of_aerosol('nitrous_oxide',6)/
data table4_233(8) /type_of_aerosol('formaldehyde',7)/
data table4_233(9) /type_of_aerosol('sulphur_dioxide',8)/
data table4_233(10) /type_of_aerosol('ammonia',9)/
data table4_233(11) /type_of_aerosol('ammonium',10)/
data table4_233(12) /type_of_aerosol('nitrogen_monoxide',11)/
data table4_233(13) /type_of_aerosol('atomic_oxygen',12)/
data table4_233(14) /type_of_aerosol('nitrate_radical',13)/
data table4_233(15) /type_of_aerosol('hydroperoxyl_radical',14)/
data table4_233(16) /type_of_aerosol('dinitrogen_pentoxide',15)/
data table4_233(17) /type_of_aerosol('nitrous_acid',16)/
data table4_233(18) /type_of_aerosol('nitric_acid',17)/
data table4_233(19) /type_of_aerosol('peroxynitric_acid',18)/
data table4_233(20) /type_of_aerosol('hydrogen_peroxide',19)/
data table4_233(21) /type_of_aerosol('molecular_hydrogen',20)/
data table4_233(22) /type_of_aerosol('atomic_nitrogen',21)/
data table4_233(23) /type_of_aerosol('sulphate',22)/
data table4_233(24) /type_of_aerosol('radon',23)/
data table4_233(25) /type_of_aerosol('elemental_mercury',24)/
data table4_233(26) /type_of_aerosol('divalent_mercury',25)/
data table4_233(27) /type_of_aerosol('atomic_chlorine',26)/
data table4_233(28) /type_of_aerosol('chlorine_monoxide',27)/
data table4_233(29) /type_of_aerosol('dichlorine_peroxide',28)/
data table4_233(30) /type_of_aerosol('hypochlorous_acid',29)/
data table4_233(31) /type_of_aerosol('chlorine_nitrate',30)/
data table4_233(32) /type_of_aerosol('chlorine_dioxide',31)/
data table4_233(33) /type_of_aerosol('atomic_bromide',32)/
data table4_233(34) /type_of_aerosol('bromine_monoxide',33)/
data table4_233(35) /type_of_aerosol('bromine_chloride',34)/
data table4_233(36) /type_of_aerosol('hydrogen_bromide',35)/
data table4_233(37) /type_of_aerosol('hypobromous_acid',36)/
data table4_233(38) /type_of_aerosol('bromine_nitrate',37)/
data table4_233(39) /type_of_aerosol('hydroxyl_radical',10000)/
data table4_233(40) /type_of_aerosol('methyl_peroxy_radical',10001)/
data table4_233(41) /type_of_aerosol('methyl_hydroperoxide',10002)/
data table4_233(42) /type_of_aerosol('methanol',10004)/
data table4_233(43) /type_of_aerosol('formic_acid',10005)/
data table4_233(44) /type_of_aerosol('hydrogen_cyanide',10006)/
data table4_233(45) /type_of_aerosol('aceto_nitrile',10007)/
data table4_233(46) /type_of_aerosol('ethane',10008)/
data table4_233(47) /type_of_aerosol('ethene',10009)/
data table4_233(48) /type_of_aerosol('ethyne',10010)/
data table4_233(49) /type_of_aerosol('ethanol',10011)/
data table4_233(50) /type_of_aerosol('acetic_acid',10012)/
data table4_233(51) /type_of_aerosol('peroxyacetyl_nitrate',10013)/
data table4_233(52) /type_of_aerosol('propane',10014)/
data table4_233(53) /type_of_aerosol('propene',10015)/
data table4_233(54) /type_of_aerosol('butanes',10016)/
data table4_233(55) /type_of_aerosol('isoprene',10017)/
data table4_233(56) /type_of_aerosol('alpha_pinene',10018)/
data table4_233(57) /type_of_aerosol('beta_pinene',10019)/
data table4_233(58) /type_of_aerosol('limonene',10020)/
data table4_233(59) /type_of_aerosol('benzene',10021)/
data table4_233(60) /type_of_aerosol('toluene',10022)/
data table4_233(61) /type_of_aerosol('xylene',10023)/
data table4_233(62) /type_of_aerosol('dumethyl_sulphide',10500)/
data table4_233(63) /type_of_aerosol('hydrogen_chloride',20001)/
data table4_233(64) /type_of_aerosol('cfc-11',20002)/
data table4_233(65) /type_of_aerosol('cfc-12',20003)/
data table4_233(66) /type_of_aerosol('cfc-113',20004)/
data table4_233(67) /type_of_aerosol('cfc-113a',20005)/
data table4_233(68) /type_of_aerosol('cfc-114',20006)/
data table4_233(69) /type_of_aerosol('cfc-115',20007)/
data table4_233(70) /type_of_aerosol('hcfc-22',20008)/
data table4_233(71) /type_of_aerosol('hcfc-141b',20009)/
data table4_233(72) /type_of_aerosol('hcfc-142b',20010)/
data table4_233(73) /type_of_aerosol('halon-1202',20011)/
data table4_233(74) /type_of_aerosol('halon-1211',20012)/
data table4_233(75) /type_of_aerosol('halon-1301',20013)/
data table4_233(76) /type_of_aerosol('halon-2402',20014)/
data table4_233(77) /type_of_aerosol('methyl_chloride',20015)/
data table4_233(78) /type_of_aerosol('carbon_tetrachloride',20016)/
data table4_233(79) /type_of_aerosol('hcc-140a',20017)/
data table4_233(80) /type_of_aerosol('methyl_bromide',20018)/
data table4_233(81) /type_of_aerosol('hexachlorocyclohexane',20019)/
data table4_233(82) /type_of_aerosol('alpha_hexachlorocyclohexane',20020)/
data table4_233(83) /type_of_aerosol('hexachlorobiphenyl',20021)/
data table4_233(84) /type_of_aerosol('radioactive_pollutant',30000)/
data table4_233(85) /type_of_aerosol('hox_radical',60000)/
data table4_233(86) /type_of_aerosol('total_inorganic_org_peroxy_radicals',60001)/
data table4_233(87) /type_of_aerosol('passive_ozone',60002)/
data table4_233(88) /type_of_aerosol('nox_nitrogen',60003)/
data table4_233(89) /type_of_aerosol('all_nitrogen_oxides',60004)/
data table4_233(90) /type_of_aerosol('total_inorganic_chlorine',60005)/
data table4_233(91) /type_of_aerosol('total_inorganic_bromine',60006)/
data table4_233(92) /type_of_aerosol('total_inorganic_chlorine_noHclClono2Clox',60007)/
data table4_233(93) /type_of_aerosol('total_inorganic_bromine_noHbrBrono2Brox',60008)/
data table4_233(94) /type_of_aerosol('lumped_alkanes',60009)/
data table4_233(95) /type_of_aerosol('lumped_alkenes',60010)/
data table4_233(96) /type_of_aerosol('lumped_aromatic_comp',60011)/
data table4_233(97) /type_of_aerosol('lumped_terpenes',60012)/
data table4_233(98) /type_of_aerosol('non_methane_volatile_org_comp_carbon)',60013)/
data table4_233(99) /type_of_aerosol('anthropogenic_non_methane_voiatile_org_comp_carbon',60014)/
data table4_233(100) /type_of_aerosol('biogenic_non_methane_volatile_org_comp_carbon',60015)/
data table4_233(101) /type_of_aerosol('lumped_oxygenated_hydrocarbon',60016)/
data table4_233(102) /type_of_aerosol('total_aerosol',62000)/
data table4_233(103) /type_of_aerosol('dust_dry',62001)/
data table4_233(104) /type_of_aerosol('water_in_ambient',62002)/
data table4_233(105) /type_of_aerosol('ammonium_dry',62003)/
data table4_233(106) /type_of_aerosol('nitrate_dry',62004)/
data table4_233(107) /type_of_aerosol('nitric_acid_trihydrate',62005)/
data table4_233(108) /type_of_aerosol('sulphate_dry',62006)/
data table4_233(109) /type_of_aerosol('mercury_dry',62007)/
data table4_233(110) /type_of_aerosol('sea_salt_dry',62008)/
data table4_233(111) /type_of_aerosol('black_carbon_dry',62009)/
data table4_233(112) /type_of_aerosol('particulate_org_matter_dry',62010)/
data table4_233(113) /type_of_aerosol('primary_particulate_org_matter_dry',62011)/
data table4_233(114) /type_of_aerosol('secondary_particulate_org_matter_dry',62012)/
data table4_233(115) /type_of_aerosol('missing',65535)/
data table4_233(116) /type_of_aerosol('black_carbon_hydrophilic',62013)/
data table4_233(117) /type_of_aerosol('black_carbon_hydrophobic',62014)/
data table4_233(118) /type_of_aerosol('particulate_org_matter_hydrophilic',62015)/
data table4_233(119) /type_of_aerosol('particulate_org_matter_hydrophobic',62016)/
data table4_233(120) /type_of_aerosol('nitrate_hydrophilic',62017)/
data table4_233(121) /type_of_aerosol('nitrate_hydrophobic',62018)/
data table4_233(122) /type_of_aerosol('smoke_hi_absorption',62020)/
data table4_233(123) /type_of_aerosol('smoke_lo_absorption',62021)/
data table4_233(124) /type_of_aerosol('aerosol_hi_absorption',62022)/
data table4_233(125) /type_of_aerosol('aerosol_lo_absorption',62023)/
data table4_233(126) /type_of_aerosol('volcanic_ash',62025)/
! Add new parameter (04/12/2022)
! Corrected code figure (12/20/2024)
data table4_233(127) /type_of_aerosol('brown_carbon_dry',62036)/
!
! Added Aerosol Type (12/20/2024)
!
data table4_233(128) /type_of_aerosol('oxygen',38)/
!
!
type type_of_orig_field_vals
character(len=50) :: typeoforigfieldvalskey
integer :: typeoforigfieldvals
end type type_of_orig_field_vals
!
!> table5_1
type(type_of_orig_field_vals), dimension(MAXTYPEOFORIGFIELDVAL) :: table5_1
data table5_1(1) /type_of_orig_field_vals('fltng_pnt',0)/
data table5_1(2) /type_of_orig_field_vals('integer',1)/
data table5_1(3) /type_of_orig_field_vals('local1',192)/
data table5_1(4) /type_of_orig_field_vals('local2',193)/
data table5_1(5) /type_of_orig_field_vals('local3',194)/
data table5_1(6) /type_of_orig_field_vals('local4',195)/
data table5_1(7) /type_of_orig_field_vals('local5',196)/
data table5_1(8) /type_of_orig_field_vals('local6',197)/
data table5_1(9) /type_of_orig_field_vals('local7',198)/
data table5_1(10) /type_of_orig_field_vals('local8',199)/
data table5_1(11) /type_of_orig_field_vals('local9',200)/
data table5_1(12) /type_of_orig_field_vals('local10',201)/
data table5_1(13) /type_of_orig_field_vals('missing',255)/
!
!
type order_of_sptdiff_vals
character(len=50) :: ordofsptdiffkey
integer :: ordofsptdiffvals
end type order_of_sptdiff_vals
!
!> table5_6
type(order_of_sptdiff_vals), dimension(MAXORDOFSPTDIFF) :: table5_6
data table5_6(1) /order_of_sptdiff_vals('1st_ord_sptdiff',1)/
data table5_6(2) /order_of_sptdiff_vals('2nd_ord_sptdiff',2)/
data table5_6(3) /order_of_sptdiff_vals('missing',255)/
!
!
type type_of_compression
character(len=50) :: typeofcompressionkey
integer :: typeofcompressionvals
end type type_of_compression
!
!> table5_40
type(type_of_compression), dimension(MAXTYPEOFCOMPRESSION) :: table5_40
data table5_40(1) /type_of_compression('lossless',0)/
data table5_40(2) /type_of_compression('lossy',1)/
data table5_40(3) /type_of_compression('missing',255)/
!
!
type type_of_packingmethod
character(len=50) :: packingmethodkey
integer :: packingmethodvals
end type type_of_packingmethod
!
!> table5_0
type(type_of_packingmethod), dimension(MAXTYPEOFPACKINGMETHOD) :: table5_0
data table5_0(1) /type_of_packingmethod('simple_packing',0)/
data table5_0(2) /type_of_packingmethod('maxtric_simple_packing',1)/
data table5_0(3) /type_of_packingmethod('complex_packing',2)/
data table5_0(4) /type_of_packingmethod('complex_packing_spatial_diff',3)/
data table5_0(5) /type_of_packingmethod('ieee_floating_point',4)/
data table5_0(6) /type_of_packingmethod('jpeg2000',40)/
data table5_0(7) /type_of_packingmethod('png',41)/
data table5_0(8) /type_of_packingmethod('spectral_simple_packing',50)/
data table5_0(9) /type_of_packingmethod('spectral_complex_packing',51)/
data table5_0(10) /type_of_packingmethod('simple_packing_log_preprcs',61)/
data table5_0(11) /type_of_packingmethod('run_length_packing_lvl_val',200)/
!
! Added Packing Method (12/20/2024)
!
data table5_0(12) /type_of_packingmethod('ccsds_lossless',42)/
data table5_0(13) /type_of_packingmethod('spectral_limited_area_complex',53)/
!
!
type origin_centers
character(len=50) :: origincenterskey
integer :: origincentersval
end type origin_centers
!
!> ON388 Table
type(origin_centers),dimension(MAXORIGINCENTERS) :: on388_table0
data on388_table0(1) /origin_centers('melbourne1',1)/
data on388_table0(2) /origin_centers('melbourne2',2)/
data on388_table0(3) /origin_centers('melbourne3',3)/
data on388_table0(4) /origin_centers('moscow1',4)/
data on388_table0(5) /origin_centers('moscow2',5)/
data on388_table0(6) /origin_centers('moscow3',6)/
data on388_table0(7) /origin_centers('nws_ncep',7)/
data on388_table0(8) /origin_centers('nws_nwstg',8)/
data on388_table0(9) /origin_centers('nws_other',9)/
data on388_table0(10) /origin_centers('cairo1',10)/
data on388_table0(11) /origin_centers('cairo2',11)/
data on388_table0(12) /origin_centers('dakar1',12)/
data on388_table0(13) /origin_centers('dakar2',13)/
data on388_table0(14) /origin_centers('nairobi1',14)/
data on388_table0(15) /origin_centers('nairobi2',15)/
data on388_table0(16) /origin_centers('casablanca',16)/
data on388_table0(17) /origin_centers('tunis',17)/
data on388_table0(18) /origin_centers('tunis_casablanca1',18)/
data on388_table0(19) /origin_centers('tunis-casablanca2',19)/
data on388_table0(20) /origin_centers('las_palmas',20)/
data on388_table0(21) /origin_centers('algiers',21)/
data on388_table0(22) /origin_centers('acmad',22)/
data on388_table0(23) /origin_centers('mozambique',23)/
data on388_table0(24) /origin_centers('pretoria',24)/
data on388_table0(25) /origin_centers('la_reunion',25)/
data on388_table0(26) /origin_centers('khabarovsk1',26)/
data on388_table0(27) /origin_centers('khabarovsk2',27)/
data on388_table0(28) /origin_centers('new_delhi1',28)/
data on388_table0(29) /origin_centers('new_delhi2',29)/
data on388_table0(30) /origin_centers('novosibirsk1',30)/
data on388_table0(31) /origin_centers('novosibirsk2',31)/
data on388_table0(32) /origin_centers('tashkent',32)/
data on388_table0(33) /origin_centers('jeddah',33)/
data on388_table0(34) /origin_centers('jma_tokyo1',34)/
data on388_table0(35) /origin_centers('jma_tokyo2',35)/
data on388_table0(36) /origin_centers('bankok',36)/
data on388_table0(37) /origin_centers('ulan_bator',37)/
data on388_table0(38) /origin_centers('beijing1',38)/
data on388_table0(39) /origin_centers('beijing2',39)/
data on388_table0(40) /origin_centers('seoul',40)/
data on388_table0(41) /origin_centers('buenos_aires1',41)/
data on388_table0(42) /origin_centers('buenos_aires2',42)/
data on388_table0(43) /origin_centers('brasilia1',43)/
data on388_table0(44) /origin_centers('brasilia2',44)/
data on388_table0(45) /origin_centers('santiago',45)/
data on388_table0(46) /origin_centers('brazilian_inpe',46)/
data on388_table0(47) /origin_centers('columbia',47)/
data on388_table0(48) /origin_centers('ecuador',48)/
data on388_table0(49) /origin_centers('peru',49)/
data on388_table0(50) /origin_centers('venezuela',50)/
data on388_table0(51) /origin_centers('miami',51)/
data on388_table0(52) /origin_centers('tpc_nhc',52)/
data on388_table0(53) /origin_centers('cms_montreal1',53)/
data on388_table0(54) /origin_centers('cms_montreal2',54)/
data on388_table0(55) /origin_centers('san_francisco',55)/
data on388_table0(56) /origin_centers('arinc_center',56)/
data on388_table0(57) /origin_centers('usaf_gwc',57)/
data on388_table0(58) /origin_centers('us_navy_fnoc',58)/
data on388_table0(59) /origin_centers('noaa_fsl_boulder',59)/
data on388_table0(60) /origin_centers('ncar_boulder',60)/
data on388_table0(61) /origin_centers('service_argos',61)/
data on388_table0(62) /origin_centers('us_naval_ocean_off',62)/
data on388_table0(63) /origin_centers('honolulu',64)/
data on388_table0(64) /origin_centers('darwin1',65)/
data on388_table0(65) /origin_centers('darwin2',66)/
data on388_table0(66) /origin_centers('melbourne4',67)/
data on388_table0(67) /origin_centers('wellington1',69)/
data on388_table0(68) /origin_centers('wellington2',70)/
data on388_table0(69) /origin_centers('nadi',71)/
data on388_table0(70) /origin_centers('singapore',72)/
data on388_table0(71) /origin_centers('malaysia',73)/
data on388_table0(72) /origin_centers('ukmo_exeter1',74)/
data on388_table0(73) /origin_centers('ukmo_exeter2',75)/
data on388_table0(74) /origin_centers('moscow4',76)/
data on388_table0(75) /origin_centers('offenbach1',78)/
data on388_table0(76) /origin_centers('offenbach2',79)/
data on388_table0(77) /origin_centers('rome1',80)/
data on388_table0(78) /origin_centers('rome2',81)/
data on388_table0(79) /origin_centers('norrkoping1',82)/
data on388_table0(80) /origin_centers('norrkoping2',83)/
data on388_table0(81) /origin_centers('french_weather_toulouse1',84)/
data on388_table0(82) /origin_centers('french_weather_toulouse2',85)/
data on388_table0(83) /origin_centers('helsinki',86)/
data on388_table0(84) /origin_centers('belgrade',87)/
data on388_table0(85) /origin_centers('oslo',88)/
data on388_table0(86) /origin_centers('prague',89)/
data on388_table0(87) /origin_centers('episkopi',90)/
data on388_table0(88) /origin_centers('ankara',91)/
data on388_table0(89) /origin_centers('frankfurt_main',92)/
data on388_table0(90) /origin_centers('london',93)/
data on388_table0(91) /origin_centers('copenhagen',94)/
data on388_table0(92) /origin_centers('rota',95)/
data on388_table0(93) /origin_centers('athens',96)/
data on388_table0(94) /origin_centers('esa',97)/
data on388_table0(95) /origin_centers('ecmwf',98)/
data on388_table0(96) /origin_centers('de_bilt_netherlands',99)/
data on388_table0(97) /origin_centers('brazzaville',100)/
data on388_table0(98) /origin_centers('abidjan',101)/
data on388_table0(99) /origin_centers('libyan_arab_jamahiriya',102)/
data on388_table0(100) /origin_centers('madagascar',103)/