Changeset 3413 in ntrip
- Timestamp:
- Sep 3, 2011, 12:43:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r3412 r3413 1288 1288 if (lastOutlierPrn.isEmpty()) { 1289 1289 if (!_usePhase || iPhase == 1) { 1290 1290 1291 QVectorIterator<bncParam*> itPar(_params); 1291 1292 while (itPar.hasNext()) { … … 1293 1294 par->xx += dx(par->index); 1294 1295 } 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 1295 1312 _log += strResCode + strResPhase; 1313 1296 1314 return success; 1297 1315 }
Note:
See TracChangeset
for help on using the changeset viewer.