Changeset 6180 in ntrip for trunk/BNC/src
- Timestamp:
- Sep 14, 2014, 2:34:58 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.cpp
r6179 r6180 9 9 // 10 10 //////////////////////////////////////////////////////////////////////////// 11 t_clkCorr::t_clkCorr() { 11 t_clkCorr::t_clkCorr(const string& line) { 12 reset(); 13 istringstream in(line); 14 } 15 16 // 17 //////////////////////////////////////////////////////////////////////////// 18 void t_clkCorr::reset() { 12 19 _iod = 0; 13 20 _dClk = 0.0; … … 19 26 // 20 27 //////////////////////////////////////////////////////////////////////////// 21 t_clkCorr::t_clkCorr(const string& line) {22 istringstream in(line);23 }24 25 //26 ////////////////////////////////////////////////////////////////////////////27 28 string t_clkCorr::toLine() const { 28 29 ostringstream str; 29 30 str.setf(ios::showpoint | ios::fixed); 30 31 str << "C " << _time.gpsw() << ' ' << setprecision(2) << _time.gpssec() << ' ' 31 << _prn.toString() << ' ' << setw( 2) << _iod << ' '32 << _prn.toString() << ' ' << setw(3) << _iod << ' ' 32 33 << setw(10) << setprecision(4) << _dClk * t_CST::c << ' ' 33 34 << setw(10) << setprecision(4) << _dotDClk * t_CST::c << ' ' … … 38 39 // 39 40 //////////////////////////////////////////////////////////////////////////// 40 t_orbCorr::t_orbCorr() { 41 t_orbCorr::t_orbCorr(const string& line) { 42 reset(); 43 istringstream in(line); 44 } 45 46 // 47 //////////////////////////////////////////////////////////////////////////// 48 void t_orbCorr::reset() { 41 49 _xr.ReSize(3); _xr = 0.0; 42 50 _dotXr.ReSize(3); _dotXr = 0.0; … … 47 55 // 48 56 //////////////////////////////////////////////////////////////////////////// 49 t_orbCorr::t_orbCorr(const string& line) {50 istringstream in(line);51 }52 53 //54 ////////////////////////////////////////////////////////////////////////////55 57 string t_orbCorr::toLine() const { 56 58 ostringstream str; 57 59 str.setf(ios::showpoint | ios::fixed); 58 60 str << "O " << _time.gpsw() << ' ' << setprecision(2) << _time.gpssec() << ' ' 59 << _prn.toString() << ' ' << setw( 2) << _iod << ' '61 << _prn.toString() << ' ' << setw(3) << _iod << ' ' 60 62 << setw(10) << setprecision(4) << _xr[0] << ' ' 61 63 << setw(10) << setprecision(4) << _xr[1] << ' ' … … 64 66 << setw(10) << setprecision(4) << _dotXr[1] << ' ' 65 67 << setw(10) << setprecision(4) << _dotXr[2] << endl; 66 67 68 return str.str(); 68 69 } -
trunk/BNC/src/satObs.h
r6175 r6180 59 59 class t_orbCorr { 60 60 public: 61 t_orbCorr() ;61 t_orbCorr() {reset();} 62 62 t_orbCorr(const std::string& line); 63 void reset(); 63 64 t_prn prn() const {return _prn;} 64 65 unsigned short IOD() const {return _iod;} … … 75 76 class t_clkCorr { 76 77 public: 77 t_clkCorr() ;78 t_clkCorr() {reset();} 78 79 t_clkCorr(const std::string& line); 80 void reset(); 79 81 t_prn prn() const {return _prn;} 80 82 unsigned short IOD() const {return _iod;}
Note:
See TracChangeset
for help on using the changeset viewer.