Changeset 8693 in ntrip
- Timestamp:
- Apr 25, 2019, 12:30:57 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/satObs.cpp
r8484 r8693 18 18 } 19 19 20 // 20 // 21 21 //////////////////////////////////////////////////////////////////////////// 22 22 void t_clkCorr::writeEpoch(ostream* out, const QList<t_clkCorr>& corrList) { … … 43 43 } 44 44 45 // 45 // 46 46 //////////////////////////////////////////////////////////////////////////// 47 47 void t_clkCorr::readEpoch(const string& epoLine, istream& inStream, QList<t_clkCorr>& corrList) { … … 62 62 getline(inStream, line); 63 63 istringstream in(line.c_str()); 64 64 65 65 in >> corr._prn >> corr._iod >> corr._dClk >> corr._dotDClk >> corr._dotDotDClk; 66 66 if (corr._prn.system() == 'E') { … … 85 85 } 86 86 87 // 87 // 88 88 //////////////////////////////////////////////////////////////////////////// 89 89 void t_orbCorr::writeEpoch(ostream* out, const QList<t_orbCorr>& corrList) { … … 113 113 } 114 114 115 // 115 // 116 116 //////////////////////////////////////////////////////////////////////////// 117 117 void t_orbCorr::readEpoch(const string& epoLine, istream& inStream, QList<t_orbCorr>& corrList) { … … 132 132 getline(inStream, line); 133 133 istringstream in(line.c_str()); 134 134 135 135 in >> corr._prn >> corr._iod 136 >> corr._xr[0] >> corr._xr[1] >> corr._xr[2] 136 >> corr._xr[0] >> corr._xr[1] >> corr._xr[2] 137 137 >> corr._dotXr[0] >> corr._dotXr[1] >> corr._dotXr[2]; 138 138 … … 201 201 } 202 202 203 // 203 // 204 204 //////////////////////////////////////////////////////////////////////////// 205 205 void t_satCodeBias::writeEpoch(ostream* out, const QList<t_satCodeBias>& biasList) { … … 218 218 << biasList.size() << ' ' << satCodeBias._staID << endl; 219 219 } 220 if (!satCodeBias._bias.size()) { 221 continue; 222 } 220 223 *out << satCodeBias._prn.toString() << " " << setw(2) << satCodeBias._bias.size(); 221 224 for (unsigned ii = 0; ii < satCodeBias._bias.size(); ii++) { … … 229 232 } 230 233 231 // 234 // 232 235 //////////////////////////////////////////////////////////////////////////// 233 236 void t_satCodeBias::readEpoch(const string& epoLine, istream& inStream, QList<t_satCodeBias>& biasList) { … … 248 251 getline(inStream, line); 249 252 istringstream in(line.c_str()); 250 253 251 254 int numBias; 252 255 in >> satCodeBias._prn >> numBias; … … 264 267 } 265 268 266 // 269 // 267 270 //////////////////////////////////////////////////////////////////////////// 268 271 void t_satPhaseBias::writeEpoch(ostream* out, const QList<t_satPhaseBias>& biasList) { … … 299 302 out->flush(); 300 303 } 301 302 // 304 305 // 303 306 //////////////////////////////////////////////////////////////////////////// 304 307 void t_satPhaseBias::readEpoch(const string& epoLine, istream& inStream, QList<t_satPhaseBias>& biasList) { … … 347 350 } 348 351 349 // 352 // 350 353 //////////////////////////////////////////////////////////////////////////// 351 354 void t_vTec::write(ostream* out, const t_vTec& vTec) { … … 363 366 << setw(2) << layer._C.Nrows()-1 << ' ' 364 367 << setw(2) << layer._C.Ncols()-1 << ' ' 365 << setw(10) << setprecision(1) << layer._height << endl 366 << setw(10) << setprecision(4) << layer._C 368 << setw(10) << setprecision(1) << layer._height << endl 369 << setw(10) << setprecision(4) << layer._C 367 370 << setw(10) << setprecision(4) << layer._S; 368 371 } … … 370 373 } 371 374 372 // 375 // 373 376 //////////////////////////////////////////////////////////////////////////// 374 377 void t_vTec::read(const string& epoLine, istream& inStream, t_vTec& vTec) { … … 414 417 } 415 418 416 // 417 //////////////////////////////////////////////////////////////////////////// 418 t_corrSSR::e_type t_corrSSR::readEpoLine(const string& line, bncTime& epoTime, 419 // 420 //////////////////////////////////////////////////////////////////////////// 421 t_corrSSR::e_type t_corrSSR::readEpoLine(const string& line, bncTime& epoTime, 419 422 unsigned int& updateInt, int& numEntries, 420 423 string& staID) { … … 427 430 double sec; 428 431 429 inLine >> epoChar >> typeString 432 inLine >> epoChar >> typeString 430 433 >> year >> month >> day >> hour >> min >> sec >> updateInt >> numEntries >> staID; 431 434
Note:
See TracChangeset
for help on using the changeset viewer.