- Timestamp:
- Apr 8, 2022, 9:53:50 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.cpp
r8694 r9682 36 36 } 37 37 *out << corr._prn.toString() << ' ' << setw(11) << corr._iod << ' ' 38 << setw(10) << setprecision(4) << corr._dClk * t_CST::c << ' '39 << setw(10) << setprecision(4) << corr._dotDClk * t_CST::c << ' '40 << setw(10) << setprecision(4) << corr._dotDotDClk * t_CST::c << endl;38 << setw(10) << setprecision(4) << corr._dClk * t_CST::c << ' ' 39 << setw(10) << setprecision(4) << corr._dotDClk * t_CST::c *1.e3 << ' ' // m/s => mm/s 40 << setw(10) << setprecision(4) << corr._dotDotDClk * t_CST::c *1.e3 << endl; // m/s => mm/s 41 41 } 42 42 out->flush(); … … 70 70 corr._dotDClk /= t_CST::c; 71 71 corr._dotDotDClk /= t_CST::c; 72 73 corr._dotDClk /= 1.e3; // mm/s => m/s 74 corr._dotDotDClk /= 1.e3; // mm/s => m/s 72 75 73 76 corrList.push_back(corr); … … 106 109 << setw(10) << setprecision(4) << corr._xr[1] << ' ' 107 110 << setw(10) << setprecision(4) << corr._xr[2] << " " 108 << setw(10) << setprecision(4) << corr._dotXr[0] << ' '109 << setw(10) << setprecision(4) << corr._dotXr[1] << ' '110 << setw(10) << setprecision(4) << corr._dotXr[2] << endl;111 << setw(10) << setprecision(4) << corr._dotXr[0] * 1.e3 << ' ' // m/s => mm/s 112 << setw(10) << setprecision(4) << corr._dotXr[1] * 1.e3 << ' ' // m/s => mm/s 113 << setw(10) << setprecision(4) << corr._dotXr[2] * 1.e3 << endl; // m/s => mm/s 111 114 } 112 115 out->flush(); … … 136 139 >> corr._xr[0] >> corr._xr[1] >> corr._xr[2] 137 140 >> corr._dotXr[0] >> corr._dotXr[1] >> corr._dotXr[2]; 141 142 corr._dotXr /= 1.e3; // mm/s => m/s 138 143 139 144 if (corr._prn.system() == 'E') {
Note:
See TracChangeset
for help on using the changeset viewer.