Changeset 9783 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Jun 27, 2022, 5:09:40 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r9607 r9783 304 304 } 305 305 if (iObs + 1 < _opt->_minObs) { 306 LOG << "t_pppClient::cmpBancroft not enough observations: " << iObs + 1 << endl;306 LOG << "t_pppClient::cmpBancroft not enough observations: " << iObs + 1; 307 307 return failure; 308 308 } … … 335 335 if (print && _numEpoProcessing == 1) { 336 336 LOG.setf(ios::fixed); 337 LOG << "\nPPP of Epoch "; 338 if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover); 339 LOG << "\n---------------------------------------------------------------\n"; 337 340 LOG << string(epoTime) << " BANCROFT:" << ' ' 338 341 << setw(14) << setprecision(3) << xyzc[0] << ' ' … … 376 379 ////////////////////////////////////////////////////////////////////////////// 377 380 void t_pppClient::finish(t_irc irc, int ind) { 378 381 #ifdef BNC_DEBUG_PPP 379 382 LOG << "t_pppClient::finish(" << ind << "): " << irc << endl; 383 #endif 380 384 381 385 clearObs(); … … 495 499 } 496 500 497 if (_numEpoProcessing == 1) {498 LOG << "\nPPP of Epoch ";499 if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover);500 LOG << "\n---------------------------------------------------------------\n";501 }502 503 501 for (int iter = 1; iter <= 2; iter++) { 504 502 ColumnVector xyzc(4); xyzc = 0.0; … … 507 505 return finish(failure,3); 508 506 } 507 509 508 if (cmpModel(_staRover, xyzc, _obsRover) != success) { 510 509 return finish(failure,4); … … 525 524 // use observations only if satellite code biases are available 526 525 // ------------------------------------------------------------ 527 if (!_opt->_corrMount.empty() &&526 if (!_opt->_corrMount.empty() && 528 527 (OPT->_obsModelType == OPT->DCMcodeBias || 529 528 OPT->_obsModelType == OPT->DCMphaseBias)) {
Note:
See TracChangeset
for help on using the changeset viewer.