Changeset 6141 in ntrip for trunk/BNC/src/PPP/pppEphPool.cpp
- Timestamp:
- Sep 13, 2014, 5:08:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppEphPool.cpp
r6107 r6141 81 81 ///////////////////////////////////////////////////////////////////////////// 82 82 void t_pppEphPool::t_satEphPool::putOrbCorrection(t_orbCorr* corr) { 83 cout << "ORB: " << corr->_prn.toString() << ' ' << corr->IOD() << endl; 83 84 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 84 85 t_eph* eph = _ephs[ii]; … … 88 89 } 89 90 } 91 cout << "wrong" << endl; 90 92 delete corr; 91 93 } … … 94 96 ///////////////////////////////////////////////////////////////////////////// 95 97 void t_pppEphPool::t_satEphPool::putClkCorrection(t_clkCorr* corr) { 98 cout << "CLK: " << corr->_prn.toString() << ' ' << corr->IOD() << ' ' << corr->_dClk << endl; 99 bool set = false; 96 100 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 97 101 t_eph* eph = _ephs[ii]; 98 102 if (eph->IOD() == corr->IOD()) { 99 103 eph->setClkCorr(corr); 104 set = true; 100 105 } 106 } 107 if (!set) { 108 cout << "wrong" << endl; 101 109 } 102 110 delete corr; … … 107 115 t_irc t_pppEphPool::t_satEphPool::getCrd(const bncTime& tt, ColumnVector& xc, 108 116 ColumnVector& vv) const { 117 cout << "getCrd " << endl; 109 118 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 110 119 t_eph* eph = _ephs[ii]; 111 120 t_irc irc = eph->getCrd(tt, xc, vv, OPT->useOrbClkCorr()); 121 cout << "getCrd " << eph->prn().toString() << ' ' << irc << endl; 112 122 if (irc == success) { 113 123 if (eph->prn().system() == 'R') {
Note:
See TracChangeset
for help on using the changeset viewer.