- Timestamp:
- Nov 26, 2009, 3:42:57 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppclient.cpp
r2041 r2042 114 114 115 115 QString prn = QString("G%1").arg(gpseph.satellite, 2, 10, QChar('0')); 116 117 cout << "EPH " << prn.toAscii().data() << " " << gpseph.IODE << " "118 << gpseph.IODC << endl;119 116 120 117 if (_eph.contains(prn)) { … … 200 197 void bncPPPclient::processEpoch() { 201 198 199 cout.setf(ios::fixed); 200 202 201 QMapIterator<QString, t_satData*> it(_epoData->satData); 203 202 while (it.hasNext()) { … … 208 207 ColumnVector xc(4); 209 208 ColumnVector vv(3); 210 211 cout.setf(ios::fixed);212 209 213 210 bool corr = false; … … 217 214 << setw(14) << setprecision(3) << xc(2) << " " 218 215 << setw(14) << setprecision(3) << xc(3) << " " 219 << setw(1 4) << setprecision(6) << xc(4)*1.e6;216 << setw(12) << setprecision(6) << xc(4)*1.e6; 220 217 if (corr) { 221 218 cout << endl; -
trunk/BNC/bncpppclient.h
r2039 r2042 86 86 private: 87 87 t_irc getSatPos(const t_time& tt, const QString& prn, 88 ColumnVector& xc, ColumnVector& vv );88 ColumnVector& xc, ColumnVector& vv, bool& corr); 89 89 void processEpoch(); 90 void applyCorr(const t_corr* cc, ColumnVector& xc, ColumnVector& vv); 91 90 92 QByteArray _staID; 91 93 QMutex _mutex;
Note:
See TracChangeset
for help on using the changeset viewer.