Changeset 2123 in ntrip


Ignore:
Timestamp:
Dec 18, 2009, 9:40:34 AM (14 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 added
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpppclient.cpp

    r2113 r2123  
    141141  // Add new Satellite to the epoch
    142142  // ------------------------------
    143   t_time tt(obs->GPSWeek, obs->GPSWeeks);
     143  bncTime tt(obs->GPSWeek, obs->GPSWeeks);
    144144 
    145145  if      (!_epoData) {
     
    229229// Satellite Position
    230230////////////////////////////////////////////////////////////////////////////
    231 t_irc bncPPPclient::getSatPos(const t_time& tt, const QString& prn,
     231t_irc bncPPPclient::getSatPos(const bncTime& tt, const QString& prn,
    232232                              ColumnVector& xc, ColumnVector& vv, bool& corr) {
    233233
     
    288288  for (int ii = 1; ii <= 10; ii++) {
    289289
    290     t_time ToT = _epoData->tt - prange / t_CST::c - clkSat;
     290    bncTime ToT = _epoData->tt - prange / t_CST::c - clkSat;
    291291
    292292    ColumnVector xc(4);
  • trunk/BNC/bncpppclient.h

    r2113 r2123  
    3131
    3232#include "bncconst.h"
    33 #include "t_time.h"
     33#include "bnctime.h"
    3434#include "RTCM/GPSDecoder.h"
    3535#include "RTCM3/ephemeris.h"
     
    6868  }
    6969  unsigned size() const {return satData.size();}
    70   t_time                    tt;
     70  bncTime                    tt;
    7171  QMap<QString, t_satData*> satData;
    7272};
     
    7474class t_corr {
    7575 public:
    76   t_time       tt;
     76  bncTime       tt;
    7777  int          iod;
    7878  double       dClk;
     
    9393
    9494 private:
    95   t_irc getSatPos(const t_time& tt, const QString& prn,
     95  t_irc getSatPos(const bncTime& tt, const QString& prn,
    9696                  ColumnVector& xc, ColumnVector& vv, bool& corr);
    9797  void processEpoch();
Note: See TracChangeset for help on using the changeset viewer.