Changeset 6426 in ntrip for trunk/BNC/src/orbComp
- Timestamp:
- Dec 24, 2014, 5:03:48 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/orbComp/sp3Comp.cpp
r6425 r6426 301 301 // Estimate Clock Offsets 302 302 // ---------------------- 303 string systems = "GR"; 303 string systems; 304 for (set<t_prn>::const_iterator it = clkSatsAll.begin(); it != clkSatsAll.end(); it++) { 305 if (systems.find(it->system()) == string::npos) { 306 systems += it->system(); 307 } 308 } 304 309 for (unsigned iSys = 0; iSys < systems.size(); iSys++) { 305 310 char system = systems[iSys]; 306 311 set<t_prn> clkSats; 307 set<t_prn>::const_iterator it; 308 for (it = clkSatsAll.begin(); it != clkSatsAll.end(); it++) { 312 for (set<t_prn>::const_iterator it = clkSatsAll.begin(); it != clkSatsAll.end(); it++) { 309 313 if (it->system() == system) { 310 314 clkSats.insert(*it);
Note:
See TracChangeset
for help on using the changeset viewer.