mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-20 19:19:02 -04:00
In astro.cpp, round off display of width1 and width2 to nearest integer Hz.
This commit is contained in:
parent
cc541973fc
commit
f9ce51c039
@ -136,14 +136,14 @@ auto Astro::astroUpdate(QDateTime const& t, QString const& mygrid, QString const
|
||||
<< "Az: " << azmoon << "\n"
|
||||
"El: " << elmoon << "\n"
|
||||
"SelfDop:" << m_dop00 << "\n"
|
||||
"Width: " << int(width1) << "\n"
|
||||
"Width: " << int(width1+0.5) << "\n"
|
||||
<< qSetRealNumberPrecision (2)
|
||||
<< "Delay: " << techo << "\n"
|
||||
<< qSetRealNumberPrecision (1)
|
||||
<< "DxAz: " << azmoondx << "\n"
|
||||
"DxEl: " << elmoondx << "\n"
|
||||
"DxDop: " << m_dop << "\n"
|
||||
"DxWid: " << int(width2) << "\n"
|
||||
"DxWid: " << int(width2+0.5) << "\n"
|
||||
"Dec: " << decmoon << "\n"
|
||||
"SunAz: " << azsun << "\n"
|
||||
"SunEl: " << elsun << "\n"
|
||||
|
Loading…
Reference in New Issue
Block a user