Skip to content

Commit ae3570c

Browse files
table 4.10
1 parent 16a03ff commit ae3570c

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/grib2_all_tables_module.F90

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,12 @@ module grib2_all_tables_module
600600
data table4_10(32) /statistical_processing_types('variance',208)/
601601
data table4_10(33) /statistical_processing_types('confficient',209)/
602602
!
603+
! Added Statistical Processing Type (12/20/2024)
604+
!
605+
data table4_10(34) /statistical_processing_types('severity',100)/
606+
data table4_10(35) /statistical_processing_types('mode',101)/
607+
data table4_10(36) /statistical_processing_types('index_proc',102)/
608+
!
603609
!
604610
type type_of_time_intervals
605611
character(len=80) :: typeoftimeintervalskey

tests/test_all_key_tables.F90

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -636,6 +636,12 @@ program test_all_tables
636636
if (val1 .ne. 208) stop 10
637637
call get_g2_statprocesstypes('confficient', val1, ierr)
638638
if (val1 .ne. 209) stop 10
639+
call get_g2_statprocesstypes('severity', val1, ierr)
640+
if (val1 .ne. 100) stop 10
641+
call get_g2_statprocesstypes('mode', val1, ierr)
642+
if (val1 .ne. 101) stop 10
643+
call get_g2_statprocesstypes('index_proc', val1, ierr)
644+
if (val1 .ne. 102) stop 10
639645
call get_g2_statprocesstypes('xxxxx', val1, ierr)
640646
if (ierr .ne. 9) stop 10
641647

0 commit comments

Comments
 (0)