Skip to content
Open
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ program mkOverlaySimple
use MAPL_HashMod
use MAPL_ExceptionHandling
use MAPL_Constants
use, intrinsic :: iso_fortran_env, only: REAL64

! Overlay atmosphere, land, and ocean rasters, creating a .idx file.
! The ocean raster should be defined everywhere, or at least, everywhere
Expand Down Expand Up @@ -210,8 +211,11 @@ program mkOverlaySimple

allocate(iTable(0:nvars,maxtiles),stat=status)
VERIFY_(STATUS)
iTable = 0

allocate(rTable(1:rvars,maxtiles),stat=status)
VERIFY_(STATUS)
rTable = 0.0_REAL64

allocate(rst1(nx,ny), stat=status)
VERIFY_(STATUS)
Expand Down Expand Up @@ -279,7 +283,7 @@ program mkOverlaySimple
end if

ip = 0
Hash = MAPL_HashCreate(8*1024)
Hash = MAPL_HashCreate(512*1024)

if(Verb) write (6, '(A)', advance='NO') ' Started Overlay'

Expand Down