- Timestamp:
- Jun 17, 2011, 4:59:38 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncgetthread.cpp
r3305 r3306 468 468 // ---------------------------------------------------- 469 469 QMap<QString, long>::const_iterator it = _prnLastEpo.find(prn); 470 if (it == _prnLastEpo.end()) { 471 _prnLastEpo[prn] = obsTime; 472 } 473 else { 470 if (it != _prnLastEpo.end()) { 474 471 long oldTime = it.value(); 475 472 if (obsTime < oldTime) { … … 483 480 continue; 484 481 } 485 else { 486 _prnLastEpo[prn] = obsTime; 487 } 488 } 482 } 483 _prnLastEpo[prn] = obsTime; 489 484 490 485 // RINEX Output
Note:
See TracChangeset
for help on using the changeset viewer.