- Timestamp:
- Apr 25, 2008, 4:07:11 PM (17 years ago)
- Location:
- trunk/BNS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bnsrinex.cpp
r854 r855 16 16 * -----------------------------------------------------------------------*/ 17 17 18 #include <math.h> 18 19 #include <iomanip> 19 20 … … 37 38 //////////////////////////////////////////////////////////////////////////// 38 39 void bnsRinex::writeHeader(const QDateTime& datTim) { 39 _out << "THIS IS A DUMMY HEADER" << endl;40 _out << "THIS IS A DUMMY CLOCK RINEX HEADER" << endl; 40 41 } 41 42 … … 47 48 if (bnsoutf::write(GPSweek, GPSweeks, prn, xx) == success) { 48 49 50 QDateTime datTim = dateAndTimeFromGPSweek(GPSweek, GPSweeks); 51 double sec = fmod(GPSweeks, 60.0); 52 53 _out << "AS " << prn.toAscii().data() 54 << datTim.toString(" yyyy MM dd hh mm").toAscii().data() 55 << setw(12) << setprecision(8) << sec << " 2 " 56 << setw(20) << setprecision(12) << xx(4) 57 << setw(20) << setprecision(12) << 0.0 << endl; 58 49 59 return success; 50 60 } -
trunk/BNS/bnssp3.cpp
r854 r855 59 59 double sec = fmod(GPSweeks, 60.0); 60 60 61 _out << "* " 62 << datTim.toString("yyyy MM dd hh mm").toAscii().data() 61 _out << datTim.toString("* yyyy MM dd hh mm").toAscii().data() 63 62 << setw(12) << setprecision(8) << sec << endl; 64 63 } -
trunk/BNS/bnswindow.cpp
r846 r855 159 159 _sp3SamplSpinBox = new QSpinBox; 160 160 _sp3SamplSpinBox->setMinimum(0); 161 _sp3SamplSpinBox->setMaximum( 60);162 _sp3SamplSpinBox->setSingleStep( 5);161 _sp3SamplSpinBox->setMaximum(900); 162 _sp3SamplSpinBox->setSingleStep(60); 163 163 _sp3SamplSpinBox->setMaximumWidth(9*ww); 164 164 _sp3SamplSpinBox->setValue(settings.value("sp3Sampl").toInt());
Note:
See TracChangeset
for help on using the changeset viewer.