mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
f9d0a1863a
This merge brings the WSPR feature development into the main line ready for release in a future v1.6 release. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5424 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
33 lines
674 B
Fortran
33 lines
674 B
Fortran
subroutine grayline(nyear,month,nday,uth,mygrid,nduration,isun)
|
|
|
|
character*6 mygrid
|
|
real LST
|
|
real lat,lon
|
|
|
|
call grid2deg(MyGrid,elon,lat)
|
|
lon=-elon
|
|
|
|
uth0=uth-0.5*nduration/60.0
|
|
uth1=uth+0.5*nduration/60.0
|
|
|
|
call sun(nyear,month,nday,uth0,lon,lat,RASun,DecSun,LST, &
|
|
AzSun,ElSun0,mjd,day)
|
|
call sun(nyear,month,nday,uth1,lon,lat,RASun,DecSun,LST, &
|
|
AzSun,ElSun1,mjd,day)
|
|
|
|
elchk=-0.8333
|
|
isun=-1
|
|
if(elsun0.lt.elchk .and. elsun1.ge.elchk) then
|
|
isun=0
|
|
else if(elsun0.gt.elchk .and. elsun1.le.elchk) then
|
|
isun=2
|
|
else if(elsun1.gt.elchk) then
|
|
isun=1
|
|
else
|
|
isun=3
|
|
endif
|
|
|
|
return
|
|
end subroutine grayline
|
|
|