Changeset 2027 in ntrip for trunk/BNC/bncpppthread.cpp


Ignore:
Timestamp:
Nov 26, 2009, 10:15:00 AM (15 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpppthread.cpp

    r2026 r2027  
    179179}
    180180
     181// Satellite Position
     182////////////////////////////////////////////////////////////////////////////
     183t_irc bncPPPthread::getSatPos(const QString& prn,
     184                              ColumnVector& xc, ColumnVector& vv) {
     185
     186
     187}
     188
    181189//
    182190////////////////////////////////////////////////////////////////////////////
     
    189197
    190198  for (int is = 1; is <= _data->numSat; is++) {
    191     cout << is << " " << _data->prn[is].toAscii().data() << " "
    192          << _data->C1[is] << " " << _data->P1[is] << endl;
     199    QString prn = _data->prn[is];
     200
     201    ColumnVector xc(4);
     202    ColumnVector vv(3);
     203
     204    if (getSatPos(prn, xc, vv) == success) {
     205
     206    }
    193207  }
    194208
     
    199213  _data = 0;
    200214}
     215
Note: See TracChangeset for help on using the changeset viewer.