Changeset 903 in ntrip
- Timestamp:
- May 9, 2008, 8:59:18 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3coDecoder.cpp
r881 r903 82 82 _co.Sat[ii].Orbit.DeltaCrossTrack); 83 83 *_out << line.toAscii().data(); 84 _out->flush();85 84 } 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(); 86 95 _buffer = _buffer.substr(bytesused); 87 96 return success;
Note:
See TracChangeset
for help on using the changeset viewer.