Changeset 9544 in ntrip


Ignore:
Timestamp:
Nov 16, 2021, 1:49:21 PM (2 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r9285 r9544  
    628628          if (wrongObservationEpoch) {
    629629            QString prn(obs._prn.toString().c_str());
    630             emit(newMessage(_staID + " (" + prn.toLatin1() + ")" + ": Wrong observation epoch(s)", false));
     630            QString type = QString("%1").arg(obs._type);
     631            emit(newMessage(_staID + " (" + prn.toLatin1() + ")" + ": Wrong observation epoch(s)" + "( MT: " + type.toLatin1() + ")", false));
    631632            continue;
    632633          }
  • trunk/BNC/src/satObs.h

    r9088 r9544  
    5454    _prn   = old._prn;
    5555    _time  = old._time;
     56    _type = old._type;
    5657    for (unsigned ii = 0; ii < old._obs.size(); ii++) {
    5758      _obs.push_back(new t_frqObs(*old._obs[ii]));
     
    7879    _prn.clear();
    7980    _staID.clear();
     81    _type = 0;
    8082  }
    8183
     
    8385  t_prn                  _prn;
    8486  bncTime                _time;
     87  int                    _type;
    8588  std::vector<t_frqObs*> _obs;
    8689};
Note: See TracChangeset for help on using the changeset viewer.