Changeset 2042 in ntrip


Ignore:
Timestamp:
Nov 26, 2009, 3:42:57 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpppclient.cpp

    r2041 r2042  
    114114
    115115  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;
    119116
    120117  if (_eph.contains(prn)) {
     
    200197void bncPPPclient::processEpoch() {
    201198
     199  cout.setf(ios::fixed);
     200
    202201  QMapIterator<QString, t_satData*> it(_epoData->satData);
    203202  while (it.hasNext()) {
     
    208207    ColumnVector xc(4);
    209208    ColumnVector vv(3);
    210 
    211     cout.setf(ios::fixed);
    212209
    213210    bool corr = false;
     
    217214           << setw(14) << setprecision(3) << xc(2)                << "  "
    218215           << setw(14) << setprecision(3) << xc(3)                << "  "
    219            << setw(14) << setprecision(6) << xc(4)*1.e6;
     216           << setw(12) << setprecision(6) << xc(4)*1.e6;
    220217      if (corr) {
    221218        cout << endl;
  • trunk/BNC/bncpppclient.h

    r2039 r2042  
    8686 private:
    8787  t_irc getSatPos(const t_time& tt, const QString& prn,
    88                   ColumnVector& xc, ColumnVector& vv);
     88                  ColumnVector& xc, ColumnVector& vv, bool& corr);
    8989  void processEpoch();
     90  void applyCorr(const t_corr* cc, ColumnVector& xc, ColumnVector& vv);
     91
    9092  QByteArray             _staID;
    9193  QMutex                 _mutex;
Note: See TracChangeset for help on using the changeset viewer.