Changeset 2123 in ntrip
- Timestamp:
- Dec 18, 2009, 9:40:34 AM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 added
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppclient.cpp
r2113 r2123 141 141 // Add new Satellite to the epoch 142 142 // ------------------------------ 143 t_time tt(obs->GPSWeek, obs->GPSWeeks);143 bncTime tt(obs->GPSWeek, obs->GPSWeeks); 144 144 145 145 if (!_epoData) { … … 229 229 // Satellite Position 230 230 //////////////////////////////////////////////////////////////////////////// 231 t_irc bncPPPclient::getSatPos(const t_time& tt, const QString& prn,231 t_irc bncPPPclient::getSatPos(const bncTime& tt, const QString& prn, 232 232 ColumnVector& xc, ColumnVector& vv, bool& corr) { 233 233 … … 288 288 for (int ii = 1; ii <= 10; ii++) { 289 289 290 t_time ToT = _epoData->tt - prange / t_CST::c - clkSat;290 bncTime ToT = _epoData->tt - prange / t_CST::c - clkSat; 291 291 292 292 ColumnVector xc(4); -
trunk/BNC/bncpppclient.h
r2113 r2123 31 31 32 32 #include "bncconst.h" 33 #include " t_time.h"33 #include "bnctime.h" 34 34 #include "RTCM/GPSDecoder.h" 35 35 #include "RTCM3/ephemeris.h" … … 68 68 } 69 69 unsigned size() const {return satData.size();} 70 t_time tt;70 bncTime tt; 71 71 QMap<QString, t_satData*> satData; 72 72 }; … … 74 74 class t_corr { 75 75 public: 76 t_time tt;76 bncTime tt; 77 77 int iod; 78 78 double dClk; … … 93 93 94 94 private: 95 t_irc getSatPos(const t_time& tt, const QString& prn,95 t_irc getSatPos(const bncTime& tt, const QString& prn, 96 96 ColumnVector& xc, ColumnVector& vv, bool& corr); 97 97 void processEpoch();
Note:
See TracChangeset
for help on using the changeset viewer.