- Timestamp:
- Oct 7, 2008, 12:40:28 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3coDecoder.cpp
r1035 r1154 86 86 QSettings settings; 87 87 88 QDateTime datTim = QDateTime::currentDateTime().toUTC();88 QDateTime datTim = currentDateAndTimeGPS(); 89 89 90 90 QString hlpStr = bncRinex::nextEpochStr(datTim, -
trunk/BNC/bncapp.cpp
r1044 r1154 180 180 181 181 if (_logStream) { 182 *_logStream << QDateTime::currentDateTime().toUTC().toString("yy-MM-dd hh:mm:ss ").toAscii().data();182 *_logStream << currentDateAndTimeGPS().toString("yy-MM-dd hh:mm:ss ").toAscii().data(); 183 183 *_logStream << msg.data() << endl; 184 184 _logStream->flush(); … … 276 276 if (!_ephPath.isEmpty()) { 277 277 278 QDateTime datTim = QDateTime::currentDateTime().toUTC();278 QDateTime datTim = currentDateAndTimeGPS(); 279 279 280 280 QString ephFileNameGPS = _ephPath + "BRDC" + … … 356 356 *_ephStreamGPS << line; 357 357 358 QString hlp = QDateTime::currentDateTime().toUTC().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);358 QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true); 359 359 *_ephStreamGPS << _pgmName.toAscii().data() 360 360 << _userName.toAscii().data() … … 378 378 *_ephStreamGPS << line; 379 379 380 QString hlp = QDateTime::currentDateTime().toUTC().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);380 QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true); 381 381 *_ephStreamGPS << _pgmName.toAscii().data() 382 382 << _userName.toAscii().data() … … 395 395 *_ephStreamGlonass << line; 396 396 397 QString hlp = QDateTime::currentDateTime().toUTC().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);397 QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true); 398 398 *_ephStreamGlonass << _pgmName.toAscii().data() 399 399 << _userName.toAscii().data() -
trunk/BNC/bncrinex.cpp
r1044 r1154 236 236 // -------------------- 237 237 else { 238 QDate currDate = QDateTime::currentDateTime().toUTC().date();238 QDate currDate = currentDateAndTimeGPS().date(); 239 239 if ( !_skeletonDate.isValid() || _skeletonDate != currDate ) { 240 240 if ( downloadSkeleton() == success) { … … 399 399 if (line.indexOf("PGM / RUN BY / DATE") != -1) { 400 400 if (_rinexVers == 3) { 401 QString hlp = QDateTime::currentDateTime().toUTC().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);401 QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true); 402 402 _out << _pgmName.toAscii().data() << _userName.toAscii().data() 403 403 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl; 404 404 } 405 405 else { 406 QString hlp = QDateTime::currentDateTime().toUTC().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);406 QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true); 407 407 _out << _pgmName.toAscii().data() << _userName.toAscii().data() 408 408 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl; … … 453 453 if (_rinexVers == 3) { 454 454 _out << " 3.00 OBSERVATION DATA M (MIXED) RINEX VERSION / TYPE" << endl; 455 QString hlp = QDateTime::currentDateTime().toUTC().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);455 QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true); 456 456 _out << _pgmName.toAscii().data() << _userName.toAscii().data() 457 457 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl; … … 459 459 else { 460 460 _out << " 2.11 OBSERVATION DATA M (MIXED) RINEX VERSION / TYPE" << endl; 461 QString hlp = QDateTime::currentDateTime().toUTC().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);461 QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true); 462 462 _out << _pgmName.toAscii().data() << _userName.toAscii().data() 463 463 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl; -
trunk/BNC/bncutils.cpp
r1153 r1154 98 98 leapsecond; 99 99 } 100 101 QDateTime currentDateAndTimeGPS() { 102 int GPSWeek; 103 double GPSWeeks; 104 currentGPSWeeks(GPSWeek, GPSWeeks); 105 return dateAndTimeFromGPSweek(GPSWeek, GPSWeeks); 106 } 107 -
trunk/BNC/bncutils.h
r1153 r1154 35 35 void currentGPSWeeks(int& week, double& sec); 36 36 37 QDateTime currentDateAndTimeGPS(); 38 37 39 #endif -
trunk/BNC/bnczerodecoder.cpp
r934 r1154 71 71 //////////////////////////////////////////////////////////////////////// 72 72 void bncZeroDecoder::reopen() { 73 QDate currDate = QDateTime::currentDateTime().toUTC().date();73 QDate currDate = currentDateAndTimeGPS().date(); 74 74 if (!_out || _fileDate != currDate) { 75 75 delete _out;
Note:
See TracChangeset
for help on using the changeset viewer.