Changeset 10311 in ntrip
- Timestamp:
- Jan 2, 2024, 12:39:10 PM (11 months ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r10275 r10311 210 210 } 211 211 212 _rtnetDecoder = 0;212 _rtnetDecoder = new bncRtnetDecoder(); 213 213 214 214 connect(this, SIGNAL(newMessage(QByteArray,bool)), BNC_CORE, SLOT(slotMessage(const QByteArray,bool))); … … 1140 1140 //cout << outLines.toStdString(); 1141 1141 1142 if (!_rtnetDecoder) {1143 _rtnetDecoder = new bncRtnetDecoder();1144 }1145 1146 1142 vector<string> errmsg; 1147 1143 _rtnetDecoder->Decode(outLines.toLatin1().data(), outLines.length(), errmsg); -
trunk/BNC/src/satObs.cpp
r9686 r10311 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 * 1.e3 << ' ' // m/s => mm/s40 << setw(10) << setprecision(4) << corr._dotDotDClk * t_CST::c * 1.e3 << endl; // m/s => mm/s38 << setw(10) << setprecision(4) << corr._dClk * t_CST::c << ' ' // m 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(); … … 67 67 corr._prn.setFlags(1);// I/NAV 68 68 } 69 corr._dClk /= (t_CST::c); // m70 corr._dotDClk /= (t_CST::c * 1.e3); // mm/s71 corr._dotDotDClk /= (t_CST::c * 1.e3); // mm/s²69 corr._dClk /= (t_CST::c); 70 corr._dotDClk /= (t_CST::c * 1.e3); 71 corr._dotDotDClk /= (t_CST::c * 1.e3); 72 72 73 73 corrList.push_back(corr);
Note:
See TracChangeset
for help on using the changeset viewer.