Changeset 7202 in ntrip


Ignore:
Timestamp:
Aug 17, 2015, 11:15:48 AM (9 years ago)
Author:
stuerze
Message:

minor changes regarding RINEX file names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncrinex.cpp

    r7182 r7202  
    212212                               QDateTime* nextEpoch) {
    213213
    214   QString epoStr;
     214  QString epoStr = "";
    215215
    216216  QTime nextTime;
    217217  QDate nextDate;
    218 
    219   (rnxV3filenames) ? epoStr = "" : epoStr = "A";
    220218
    221219  int indHlp = intStr.indexOf("min");
     
    225223    if (rnxV3filenames) {
    226224      epoStr +=  QString("%1").arg(datTim.time().hour(), 2, 10, QChar('0')); // H
    227     }
     225    } else {
     226      epoStr +=  'A' + datTim.time().hour();
     227    }
     228
    228229    if (datTim.time().minute() >= 60-step) {
    229230      epoStr += QString("%1").arg(60-step, 2, 10, QChar('0'));               // M
     
    255256    int step = intStr.left(indHlp-1).toInt();
    256257    if (rnxV3filenames) {
    257       epoStr +=  QString("%1").arg(datTim.time().hour(), 2, 10, QChar('0')); // H
     258      epoStr += QString("%1").arg(datTim.time().hour(), 2, 10, QChar('0')); // H
    258259      epoStr += QString("%1").arg(0, 2, 10, QChar('0'));                     // M
    259260      epoStr += QString("%1").arg(0, 2, 10, QChar('0'));                     // S
    260261      epoStr += QString("_%1H").arg(step+1, 2, 10, QChar('0'));              // period
     262    } else {
     263      epoStr +=  'A' + datTim.time().hour();
    261264    }
    262265    if (datTim.time().hour() < 23) {
Note: See TracChangeset for help on using the changeset viewer.