Fix a typo that cause grid vectors on the same longtitude parallels to fail

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7045 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2016-08-29 17:02:23 +00:00
parent c2c982dba9
commit cff1de14a3
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ subroutine azdist(grid1,grid2,utch,nAz,nEl,nDmiles,nDkm,nHotAz,nHotABetter)
call grid2deg(MyGrid,dlong1,dlat1)
call grid2deg(HisGrid,dlong2,dlat2)
eps=1.e-6
if(abs(dlat1-dlat2).lt.eps .and. abs(dling1-dling2).lt.eps) then
if(abs(dlat1-dlat2).lt.eps .and. abs(dlong1-dlong2).lt.eps) then
Az=0.
Dmiles=0.
Dkm=0.0