mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
25d0429b36
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3978 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
15 lines
272 B
Fortran
15 lines
272 B
Fortran
subroutine tm2(day,xlat4,xlon4,xl4,b4)
|
|
|
|
implicit real*8 (a-h,o-z)
|
|
parameter (RADS=0.0174532925199433d0)
|
|
|
|
real*4 xlat4,xlon4,xl4,b4
|
|
|
|
glat=xlat4*RADS
|
|
glong=xlon4*RADS
|
|
call tmoonsub(day,glat,glong,el,rv,xl,b,pax)
|
|
xl4=xl
|
|
b4=b
|
|
|
|
end subroutine tm2
|