Changeset 2466 in ntrip for trunk/BNC/RTCM3/RTCM3coDecoder.cpp


Ignore:
Timestamp:
May 5, 2010, 11:07:19 AM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM3/RTCM3coDecoder.cpp

    r2465 r2466  
    211211        // Loop over all satellites (GPS and Glonass)
    212212        // ------------------------------------------
     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        }
    213219        for (int ii = 0; ii < CLOCKORBIT_NUMGPS+_co.NumberOfGLONASSSat; ii++) {
    214220          char sysCh = ' ';
     
    303309        // Loop over all satellites (GPS and Glonass)
    304310        // ------------------------------------------
     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        }
    305317        for (int ii = 0; ii < CLOCKORBIT_NUMGPS + _bias.NumberOfGLONASSSat; ii++) {
    306318          char sysCh = ' ';
Note: See TracChangeset for help on using the changeset viewer.