Changeset 9178 in ntrip
- Timestamp:
- Oct 22, 2020, 1:30:09 PM (4 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncsp3.cpp
r8902 r9178 18 18 #include <iomanip> 19 19 #include <sstream> 20 #include <iostream> 20 21 #include <math.h> 21 22 -
trunk/BNC/src/orbComp/sp3Comp.cpp
r9175 r9178 84 84 } 85 85 if (!_log) { 86 cerr<< "ERROR: SP3Comp requires logfile specification" << endl;86 *_log << "ERROR: SP3Comp requires logfile specification" << endl; 87 87 goto exit; 88 88 } … … 298 298 map<t_prn, ColumnVector>& xyz = epoch->_xyz; 299 299 map<t_prn, ColumnVector>& xyz2 = epoch2->_xyz; 300 QList<t_prn> satEraseList; 300 301 for (map<t_prn, ColumnVector>::const_iterator it = dr.begin(); it != dr.end(); it++) { 301 302 const t_prn& prn = it->first; … … 311 312 } 312 313 else { 313 epoch->_dc.erase(prn); 314 epoch->_dr.erase(prn); 315 } 314 satEraseList << it->first; 315 } 316 } 317 for (QList<t_prn>::const_iterator it = satEraseList.begin(); it != satEraseList.end(); it++) { 318 epoch->_dc.erase(*it); 319 epoch->_dr.erase(*it); 316 320 } 317 321 }
Note:
See TracChangeset
for help on using the changeset viewer.