- Timestamp:
- May 5, 2010, 11:07:19 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3coDecoder.cpp
r2465 r2466 211 211 // Loop over all satellites (GPS and Glonass) 212 212 // ------------------------------------------ 213 if (_co.NumberOfGPSSat > 0 || _co.NumberOfGLONASSSat > 0) { 214 QString line1; 215 line1.sprintf("! Orbits/Clocks: %d GPS %d Glonass", 216 _co.NumberOfGPSSat, _co.NumberOfGLONASSSat); 217 printLine(line1, coTime); 218 } 213 219 for (int ii = 0; ii < CLOCKORBIT_NUMGPS+_co.NumberOfGLONASSSat; ii++) { 214 220 char sysCh = ' '; … … 303 309 // Loop over all satellites (GPS and Glonass) 304 310 // ------------------------------------------ 311 if (_bias.NumberOfGPSSat > 0 || _bias.NumberOfGLONASSSat > 0) { 312 QString line1; 313 line1.sprintf("! Biases: %d GPS %d Glonass", 314 _bias.NumberOfGPSSat, _bias.NumberOfGLONASSSat); 315 printLine(line1, coTime); 316 } 305 317 for (int ii = 0; ii < CLOCKORBIT_NUMGPS + _bias.NumberOfGLONASSSat; ii++) { 306 318 char sysCh = ' ';
Note:
See TracChangeset
for help on using the changeset viewer.