Changeset 3413 in ntrip for trunk/BNC


Ignore:
Timestamp:
Sep 3, 2011, 12:43:01 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmodel.cpp

    r3412 r3413  
    12881288      if (lastOutlierPrn.isEmpty()) {
    12891289        if (!_usePhase || iPhase == 1) {
     1290
    12901291          QVectorIterator<bncParam*> itPar(_params);
    12911292          while (itPar.hasNext()) {
     
    12931294            par->xx += dx(par->index);
    12941295          }
     1296
     1297          if (_outlierGPS.size() > 0 || _outlierGlo.size() > 0) {
     1298            _log += "Neglected PRNs: ";
     1299            QStringListIterator itGPS(_outlierGPS);
     1300            while (itGPS.hasNext()) {
     1301              QString prn = itGPS.next();
     1302              _log += prn + ' ';
     1303            }
     1304            QStringListIterator itGlo(_outlierGlo);
     1305            while (itGlo.hasNext()) {
     1306              QString prn = itGlo.next();
     1307              _log += prn + ' ';
     1308            }
     1309          }
     1310          _log += '\n';
     1311
    12951312          _log += strResCode + strResPhase;
     1313
    12961314          return success;
    12971315        }
Note: See TracChangeset for help on using the changeset viewer.