- Timestamp:
- Sep 1, 2011, 6:05:43 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r3400 r3401 912 912 findMaxRes(vv, satData, prn, maxRes); 913 913 914 if ( maxRes > (iPhase == 1 ? MAXRES_PHASE : MAXRES_CODE) ) { 915 _log += "Outlier " + prn + " " 914 if (iPhase == 1 && maxRes > MAXRES_PHASE) { 915 _log += "Outlier Phase " + prn + " " 916 + QByteArray::number(maxRes, 'f', 3) + "\n"; 917 return true; 918 } 919 else if (iPhase == 0 && maxRes > MAXRES_CODE) { 920 _log += "Outlier Code " + prn + " " 916 921 + QByteArray::number(maxRes, 'f', 3) + "\n"; 917 922 return true; … … 1230 1235 do { 1231 1236 1237 QByteArray strResCode; 1238 QByteArray strResPhase; 1239 QString strNeglected; 1240 1232 1241 // Remove Neglected Satellites from epoData 1233 1242 // ---------------------------------------- … … 1236 1245 if ( !findInVector(usedPrns, prn) ) { 1237 1246 epoData->satData.remove(prn); 1247 strNeglected += prn + " "; 1238 1248 } 1239 1249 } … … 1247 1257 continue; 1248 1258 } 1249 1250 QByteArray strResCode;1251 QByteArray strResPhase;1252 1259 1253 1260 // First update using code observations, then phase observations … … 1321 1328 // -------------------- 1322 1329 if (nNeglected > 0) { 1323 _log += "Neglected PRNs: "; 1324 for (unsigned ip = 0; ip < allPrns.size(); ip++) { 1325 QString prn = allPrns[ip]; 1326 if ( !findInVector(usedPrns, prn) ) { 1327 _log += prn + " "; 1328 } 1329 } 1330 _log += '\n'; 1330 _log += "Neglected PRNs: " + strNeglected + '\n'; 1331 1331 } 1332 1332
Note:
See TracChangeset
for help on using the changeset viewer.