Skip to content

Commit

Permalink
Use missing=huge(0) in interp_mod_grib2.F90
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderRichert-NOAA committed Aug 9, 2023
1 parent e58c99b commit 6cd8f31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/interp_mod_grib2.F90
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ subroutine interp(grid, interp_opt)
integer :: i_output=-1, j_output=-1, mo, no, ibo(1)
integer :: ibi_scalar=0, ibo_scalar
integer :: num_pts_diff, which_func, ntol
integer , parameter :: missing=huge(ip)
integer , parameter :: missing=huge(0)

logical*1, allocatable :: output_bitmap(:,:)

Expand Down Expand Up @@ -423,7 +423,7 @@ subroutine interp_vector(grid, interp_opt)
integer :: ibi_scalar = 0, ibo_scalar
integer :: i_output, j_output, mo, no, ibo(1)
integer :: num_upts_diff, num_vpts_diff, ntol
integer, parameter :: missing=huge(ip)
integer, parameter :: missing=huge(0)

logical*1, allocatable :: output_bitmap(:,:)
real(KIND=REALSIZE), allocatable :: output_rlat(:), output_rlon(:)
Expand Down

0 comments on commit 6cd8f31

Please sign in to comment.