Changeset 903 in ntrip


Ignore:
Timestamp:
May 9, 2008, 8:59:18 AM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

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

    r881 r903  
    8282               _co.Sat[ii].Orbit.DeltaCrossTrack);
    8383        *_out << line.toAscii().data();
    84         _out->flush();
    8584      }
     85      for(int ii = CLOCKORBIT_NUMGPS;
     86          ii < CLOCKORBIT_NUMGPS + _co.NumberOfGLONASSSat; ++ii) {
     87        QString line;
     88        line.sprintf("%d R%d %d %f %f %f %f\n", _co.GPSEpochTime,
     89               _co.Sat[ii].ID, _co.Sat[ii].IOD, _co.Sat[ii].Clock.DeltaA0,
     90               _co.Sat[ii].Orbit.DeltaRadial, _co.Sat[ii].Orbit.DeltaAlongTrack,
     91               _co.Sat[ii].Orbit.DeltaCrossTrack);
     92        *_out << line.toAscii().data();
     93      }
     94      _out->flush();
    8695      _buffer = _buffer.substr(bytesused);
    8796      return success;
Note: See TracChangeset for help on using the changeset viewer.