Changeset 5127 in ntrip for trunk


Ignore:
Timestamp:
Apr 16, 2013, 7:41:33 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r5126 r5127  
    296296  newCorr->acName = acName;
    297297  if (!newCorr->readLine(line) == success) {
    298     emit newMessage("bncComb: cannot read correction: " + line.toAscii(), true);
     298    emit newMessage("bncComb: cannot read correction: " + staID.toAscii() + " " + line.toAscii(), true);
    299299    delete newCorr;
    300300    return;
     
    333333  // -----------------
    334334  if (int(newCorr->tClk.gpssec()) % _cmbSampl != 0.0) {
    335     emit newMessage("bncComb: correction out of sampling rate "  + line.toAscii(), true);
     335    emit newMessage("bncComb: correction out of sampling rate "  + staID.toAscii() + " " + line.toAscii(), true);
    336336    delete newCorr;
    337337    return;
     
    341341  // ----------------------
    342342  if (_resTime.valid() && newCorr->tClk <= _resTime) {
    343     emit newMessage("bncComb: old correction: " + line.toAscii(), true);
     343    emit newMessage("bncComb: old correction: " + staID.toAscii() + " " + line.toAscii(), true);
    344344    delete newCorr;
    345345    return;
     
    349349  //--------------------
    350350  if (_eph.find(newCorr->prn) == _eph.end()) {
    351     emit newMessage("bncComb: eph not found (1) "  + line.toAscii(), true);
     351    emit newMessage("bncComb: eph not found (1) "  + staID.toAscii() + " " + line.toAscii(), true);
    352352    delete newCorr;
    353353    return;
     
    364364    }
    365365    else {
    366       emit newMessage("bncComb: eph not found (2) "  + line.toAscii(), true);
     366      emit newMessage("bncComb: eph not found (2) "  + staID.toAscii() + " " + line.toAscii(), true);
    367367      delete newCorr;
    368368      return;
Note: See TracChangeset for help on using the changeset viewer.