Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WMO Grib2 v33.0.0 updates to grib2_all_tables_module.F90 #144

Merged
merged 27 commits into from
Dec 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e7bb4bd
table 1.0
AlysonStahl-NOAA Dec 20, 2024
638909d
Update grib2_all_tables_module.F90
AlysonStahl-NOAA Dec 20, 2024
2bd0f7e
fix indices
AlysonStahl-NOAA Dec 20, 2024
7cab576
debug
AlysonStahl-NOAA Dec 20, 2024
3b0a5de
Update test_all_key_tables.F90
AlysonStahl-NOAA Dec 20, 2024
f313e63
Update test_all_key_tables.F90
AlysonStahl-NOAA Dec 20, 2024
5eebba4
table 1.2
AlysonStahl-NOAA Dec 20, 2024
7e416e0
Update grib2_all_tables_module.F90
AlysonStahl-NOAA Dec 20, 2024
59acfa1
table 1.3
AlysonStahl-NOAA Dec 20, 2024
79f8418
add some update comments
AlysonStahl-NOAA Dec 20, 2024
e98d402
table 4.3
AlysonStahl-NOAA Dec 20, 2024
2fb6120
table 4.5 17-19
AlysonStahl-NOAA Dec 20, 2024
e549fe4
Update grib2_all_tables_module.F90
AlysonStahl-NOAA Dec 20, 2024
93a0309
table 4.5 26-27
AlysonStahl-NOAA Dec 20, 2024
1846a55
table 4.5 30-35
AlysonStahl-NOAA Dec 20, 2024
1bcdfb5
table 4.5 152
AlysonStahl-NOAA Dec 20, 2024
22a75e6
table 4.5 171-173
AlysonStahl-NOAA Dec 20, 2024
829cad9
Merge branch 'develop' into as_wmo_updates
AlysonStahl-NOAA Dec 20, 2024
ccee91e
table 4.5 180-189
AlysonStahl-NOAA Dec 20, 2024
b0f2b21
table 4.7
AlysonStahl-NOAA Dec 20, 2024
16a03ff
table 4.9
AlysonStahl-NOAA Dec 20, 2024
ae3570c
table 4.10
AlysonStahl-NOAA Dec 20, 2024
206eeff
table 4.233
AlysonStahl-NOAA Dec 20, 2024
1a55823
table 5.0
AlysonStahl-NOAA Dec 20, 2024
41ba51d
on388 table 0
AlysonStahl-NOAA Dec 21, 2024
426c4a1
on388 table a
AlysonStahl-NOAA Dec 21, 2024
7a13121
comment
AlysonStahl-NOAA Dec 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
table 5.0
AlysonStahl-NOAA committed Dec 20, 2024

Verified

This commit was signed with the committer’s verified signature.
neel-astro Neel Dalsania
commit 1a5582387e134dc0d8b2ac5f3952e60650ec666c
5 changes: 5 additions & 0 deletions src/grib2_all_tables_module.F90
Original file line number Diff line number Diff line change
@@ -882,6 +882,11 @@ module grib2_all_tables_module
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
4 changes: 4 additions & 0 deletions tests/test_all_key_tables.F90
Original file line number Diff line number Diff line change
@@ -1719,6 +1719,10 @@ program test_all_tables
if (val1 .ne. 61) stop 19
call get_g2_sec5packingmethod('run_length_packing_lvl_val', val1, ierr)
if (val1 .ne. 200) stop 19
call get_g2_sec5packingmethod('ccsds_lossless', val1, ierr)
if (val1 .ne. 42) stop 19
call get_g2_sec5packingmethod('spectral_limited_area_complex', val1, ierr)
if (val1 .ne. 53) stop 19
call get_g2_sec5packingmethod('xxxxx', val1, ierr)
if (ierr .ne. 9) stop 19