Changeset 2027 in ntrip


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

* empty log message *

Location:
trunk/BNC
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnc.pro

    r2018 r2027  
    3636          bncnetqueryrtp.h bncsettings.h latencychecker.h             \
    3737          bncipport.h bncnetqueryv0.h bncnetqueryudp.h                \
    38           bncnetqueryudp0.h bncudpport.h                              \
     38          bncnetqueryudp0.h bncudpport.h t_time.h                     \
    3939          bncserialport.h bncnetquerys.h bncfigure.h                  \
    4040          bncfigurelate.h bncpppthread.h bncversion.h                 \
     
    6565          bncnetqueryudp0.cpp bncudpport.cpp                          \
    6666          bncserialport.cpp bncnetquerys.cpp bncfigure.cpp            \
    67           bncfigurelate.cpp bncpppthread.cpp                          \
     67          bncfigurelate.cpp bncpppthread.cpp t_time.cpp               \
    6868          RTCM/RTCM2.cpp RTCM/RTCM2Decoder.cpp                        \
    6969          RTCM/RTCM2_2021.cpp RTCM/rtcm_utils.cpp                     \
  • 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
  • trunk/BNC/bncpppthread.h

    r2025 r2027  
    2929#include <QtNetwork>
    3030
     31#include <newmat.h>
     32
     33#include "bncconst.h"
    3134#include "RTCM/GPSDecoder.h"
    3235#include "RTCM3/ephemeris.h"
     
    8386
    8487 private:
     88  t_irc getSatPos(const QString& prn, ColumnVector& xc, ColumnVector& vv);
    8589  void processEpoch();
    8690  QByteArray             _staID;
Note: See TracChangeset for help on using the changeset viewer.