mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@296 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#------------------------------------------------------ astro
 | 
						|
from Tkinter import *
 | 
						|
import Pmw
 | 
						|
import g
 | 
						|
 | 
						|
def done():
 | 
						|
    g.astro_geom0=root.geometry()
 | 
						|
    root.withdraw()
 | 
						|
 | 
						|
root=Toplevel()
 | 
						|
root.withdraw()
 | 
						|
root.protocol('WM_DELETE_WINDOW',done)
 | 
						|
if g.Win32: root.iconbitmap("wsjt.ico")
 | 
						|
root.title("Astronomical data")
 | 
						|
frame=Frame(root)
 | 
						|
frame.pack()
 | 
						|
 | 
						|
def astro2(t):
 | 
						|
    root.geometry(t)
 | 
						|
    root.deiconify()
 | 
						|
    root.focus_set()
 | 
						|
 | 
						|
def update():
 | 
						|
    t1= "           Az      El\n" 
 | 
						|
    t2= "Moon:    %6.2f  %6.2f\n" % (g.AzMoon,g.ElMoon)
 | 
						|
    t3= "Moon/DX: %6.2f  %6.2f\n" % (g.AzMoonB,g.ElMoonB)
 | 
						|
    t4= "Sun:     %6.2f  %6.2f\n" % (g.AzSun,g.ElSun)
 | 
						|
    t4a="Source:  %6.2f  %6.2f\n\n" % (g.AzAux,g.ElAux)
 | 
						|
    t5= "        Doppler   df/dt\n"
 | 
						|
    t6= "DX:     %7d %7.2f\n" % (g.ndop,g.dfdt)
 | 
						|
    t7= "Self:   %7d %7.2f\n\n" % (g.ndop00,g.dfdt0)
 | 
						|
    t7a="            RA      DEC\n"
 | 
						|
    irah=int(g.RAMoon)
 | 
						|
    iram=int(60.0*(g.RAMoon-irah))
 | 
						|
    t7b="Moon:     %2.2d:%2.2d  %6.2f\n" % (irah,iram,g.DecMoon)
 | 
						|
    irah=int(g.RaAux)
 | 
						|
    iram=int(60.0*(g.RaAux-irah))
 | 
						|
    t7c="Source:   %2.2d:%2.2d  %6.2f\n\n" % (irah,iram,g.DecAux)
 | 
						|
    t8= "Freq: %4d  Tsky:%6d\n" % (g.nfreq,g.ntsky)
 | 
						|
    t9= "MNR: %5.1f  Dgrd:%6.1f\n" % (g.MaxNR,g.Dgrd)
 | 
						|
    t10="DPol: %4d  SD:%8.2f\n" % (g.poloffset,g.sd)
 | 
						|
    t=t1+t2+t3+t4+t4a+t5+t6+t7+t7a+t7b+t7c+t8+t9+t10
 | 
						|
    lab1.configure(text=t)
 | 
						|
    g.astro_geom=root.geometry()
 | 
						|
    frame.after(1000,update)
 | 
						|
 | 
						|
g2font=g.g2font
 | 
						|
lab1=Label(frame,font=g2font,justify=LEFT,bg="#66FFFF",
 | 
						|
           relief=RIDGE,bd=4,anchor=N)
 | 
						|
lab1.pack(ipadx=4)
 | 
						|
 | 
						|
frame.after(1000,update)
 |