- Timestamp:
- Jun 17, 2011, 12:49:17 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncgetthread.cpp
r3206 r3300 442 442 QListIterator<t_obs> it(_decoder->_obsList); 443 443 bool firstObs = true; 444 QList<QString> prnList; 444 445 while (it.hasNext()) { 445 446 const t_obs& obs = it.next(); 447 448 // Check observations comming twice (e.g. KOUR0 Problem) 449 // ----------------------------------------------------- 450 QString prn = QString("%1%2").arg(obs.satSys) 451 .arg(obs.satNum, 2, 10, QChar('0')); 452 if (prnList.indexOf(prn) == -1) { 453 prnList << prn; 454 } 455 else { 456 emit( newMessage(_staID + 457 ": observation comming more than once " + prn.toAscii(), false) ); 458 continue; 459 } 446 460 447 461 // Check observation epoch
Note:
See TracChangeset
for help on using the changeset viewer.