Changeset 10791 in ntrip for trunk/BNC/src/PPP/pppEphPool.cpp
- Timestamp:
- Dec 3, 2025, 5:37:16 PM (6 weeks ago)
- File:
-
- 1 edited
-
trunk/BNC/src/PPP/pppEphPool.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppEphPool.cpp
r10330 r10791 16 16 17 17 #include <iostream> 18 #include <iomanip> 18 19 #include "pppEphPool.h" 19 20 #include "pppInclude.h" … … 41 42 if (corr) { 42 43 _satEphPool[corr->_prn.toInt()].putOrbCorrection(corr); 44 if (OPT->_logMode > t_pppOptions::normal) { 45 LOG << "orbCorr " << string(corr->_time) << ' ' << corr->_prn.toString() << endl; 46 } 43 47 } 44 48 } … … 49 53 if (corr) { 50 54 _satEphPool[corr->_prn.toInt()].putClkCorrection(corr); 55 if (OPT->_logMode > t_pppOptions::normal) { 56 LOG.setf(ios::fixed); 57 LOG << "clkCorr " << string(corr->_time) << ' ' << corr->_prn.toString() << ' ' 58 << setw(7) << setprecision(3) << corr->_dClk * t_CST::c << endl; 59 } 51 60 } 52 61 }
Note:
See TracChangeset
for help on using the changeset viewer.
