Skip to content

Commit 59acfa1

Browse files
table 1.3
1 parent 7e416e0 commit 59acfa1

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/grib2_all_tables_module.F90

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,10 @@ module grib2_all_tables_module
206206
data table1_3(9) /prod_status('s2s_test',7)/
207207
data table1_3(10) /prod_status('unens_rreanl',8)/
208208
data table1_3(11) /prod_status('unens_rreanl_test',9)/
209+
data table1_3(12) /prod_status('copernic_rreanl',10)/
210+
data table1_3(13) /prod_status('copernic_rreanl_test',11)/
211+
data table1_3(14) /prod_status('dest_earth',12)/
212+
data table1_3(15) /prod_status('dest_earth_test',13)/
209213
!
210214
!
211215
type type_of_data

tests/test_all_key_tables.F90

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,14 @@ program test_all_tables
179179
if (val1 .ne. 8) stop 5
180180
call get_g2_prodstatus('unens_rreanl_test', val1, ierr)
181181
if (val1 .ne. 9) stop 5
182+
call get_g2_prodstatus('copernic_rreanl', val1, ierr)
183+
if (val1 .ne. 10) stop 5
184+
call get_g2_prodstatus('copernic_rreanl_test', val1, ierr)
185+
if (val1 .ne. 11) stop 5
186+
call get_g2_prodstatus('dest_earth', val1, ierr)
187+
if (val1 .ne. 12) stop 5
188+
call get_g2_prodstatus('dest_earth_test', val1, ierr)
189+
if (val1 .ne. 13) stop 5
182190
call get_g2_prodstatus('xxxx', val1, ierr)
183191
if (ierr .ne. 9) stop 5
184192

0 commit comments

Comments
 (0)