Changeset 6179 in ntrip
- Timestamp:
- Sep 14, 2014, 2:29:39 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.cpp
r6178 r6179 29 29 str.setf(ios::showpoint | ios::fixed); 30 30 str << "C " << _time.gpsw() << ' ' << setprecision(2) << _time.gpssec() << ' ' 31 << _prn.toString() << ' ' 31 << _prn.toString() << ' ' << setw(2) << _iod << ' ' 32 32 << setw(10) << setprecision(4) << _dClk * t_CST::c << ' ' 33 33 << setw(10) << setprecision(4) << _dotDClk * t_CST::c << ' ' … … 56 56 ostringstream str; 57 57 str.setf(ios::showpoint | ios::fixed); 58 str << "O " << endl; 58 str << "O " << _time.gpsw() << ' ' << setprecision(2) << _time.gpssec() << ' ' 59 << _prn.toString() << ' ' << setw(2) << _iod << ' ' 60 << setw(10) << setprecision(4) << _xr[0] << ' ' 61 << setw(10) << setprecision(4) << _xr[1] << ' ' 62 << setw(10) << setprecision(4) << _xr[2] << " " 63 << setw(10) << setprecision(4) << _dotXr[0] << ' ' 64 << setw(10) << setprecision(4) << _dotXr[1] << ' ' 65 << setw(10) << setprecision(4) << _dotXr[2] << endl; 66 59 67 return str.str(); 60 68 }
Note:
See TracChangeset
for help on using the changeset viewer.