Skip to content

Commit

Permalink
Update routine remove_isolated_pts to not process the
Browse files Browse the repository at this point in the history
e/w edges of the tile.

Fixes #1000.
  • Loading branch information
George Gayno committed Dec 31, 2024
1 parent 25c6b54 commit a7545ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sorc/orog_mask_tools.fd/orog.fd/orog_utils.F90
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ subroutine remove_isolated_pts(im,jm,slm,oro,var,var4,oa,ol)
iso_loop : DO J=2,JM-1
JN=J-1
JS=J+1
i_loop : DO I=1,IM
i_loop : DO I=2,IM-1
print*,'check point ',i,j
IW=MOD(I+IM-2,IM)+1
IE=MOD(I,IM)+1
Expand Down

0 comments on commit a7545ea

Please sign in to comment.