Skip to content

Commit 16a03ff

Browse files
table 4.9
1 parent b0f2b21 commit 16a03ff

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/grib2_all_tables_module.F90

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,10 @@ module grib2_all_tables_module
553553
data table4_9(8) /type_of_prob('prob_near_normal_cat',7)/
554554
data table4_9(9) /type_of_prob('prob_below_normal_cat',8)/
555555
!
556+
! Added Probability Type (12/20/2024)
557+
!
558+
data table4_9(10) /type_of_prob('prob_counts_cat_boolean',9)/
559+
!
556560
!
557561
type statistical_processing_types
558562
character(len=80) :: statprocesstypeskey

tests/test_all_key_tables.F90

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1809,6 +1809,8 @@ program test_all_tables
18091809
if (val1 .ne. 7) stop 23
18101810
call get_g2_typeofprob('prob_below_normal_cat', val1, ierr)
18111811
if (val1 .ne. 8) stop 23
1812+
call get_g2_typeofprob('prob_counts_cat_boolean', val1, ierr)
1813+
if (val1 .ne. 9) stop 23
18121814
call get_g2_typeofprob('xxxx', val1, ierr)
18131815
if (ierr .ne. 9) stop 23
18141816

0 commit comments

Comments
 (0)