Skip to content

Commit

Permalink
Remove another warning from input_data.F90.
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGayno-NOAA committed Dec 16, 2022
1 parent c243c59 commit c38e35d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sorc/chgres_cube.fd/input_data.F90
Original file line number Diff line number Diff line change
Expand Up @@ -7073,8 +7073,8 @@ subroutine gridrot(lov,latin1,latin2,lon,rot)
if ( (latin1 - latin2) .lt. 0.000001 ) then
an = sin(latin1*dtor)
else
an = log( cos(latin1*dtor) / cos(latin2*dtor) ) / &
log( tan(dtor*(90.0-latin1)/2.) / tan(dtor*(90.0-latin2)/2.))
an = real(log( cos(latin1*dtor) / cos(latin2*dtor) ) / &
log( tan(dtor*(90.0-latin1)/2.) / tan(dtor*(90.0-latin2)/2.)), kind=esmf_kind_r4)
end if

tlon = real((mod(lon - lov + 180. + 3600., 360.) - 180.), kind=esmf_kind_r4)
Expand Down

0 comments on commit c38e35d

Please sign in to comment.