Changeset 9321 in ntrip
- Timestamp:
- Dec 17, 2020, 4:09:40 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/ephemeris.h
r9216 r9321 37 37 void setClkCorr(const t_clkCorr* clkCorr); 38 38 const QDateTime& receptDateTime() const {return _receptDateTime;} 39 39 const QString receptStaID() const {return _receptStaID;} 40 40 static QString rinexDateStr(const bncTime& tt, const t_prn& prn, double version); 41 41 static QString rinexDateStr(const bncTime& tt, const QString& prnStr, double version); … … 94 94 virtual ~t_ephGPS() {} 95 95 96 96 virtual e_type type() const { 97 97 switch (_prn.system()) { 98 98 case 'J': … … 140 140 double _L2PFlag; // L2 P data flag (not valid for IRNSS and QZSS) 141 141 142 mutable double _ura; // SV accuracy 142 mutable double _ura; // SV accuracy [m] 143 143 double _health; // SV health 144 144 double _TGD; // [s] … … 147 147 double _TOT; // Transmission time 148 148 double _fitInterval; // Fit interval in hours (not valid for IRNSS) 149 150 149 }; 151 150 … … 190 189 _M_tau_GPS = 0.0; 191 190 _M_l5 = 0.0; 192 _receptStaID = ""; 191 _receptStaID = ""; 193 192 } 194 193 t_ephGlo(float rnxVersion, const QStringList& lines); … … 283 282 _BGD_1_5B = 0.0; 284 283 _TOT = 0.0; 285 _receptStaID = ""; 284 _receptStaID = ""; 286 285 }; 287 286 t_ephGal(float rnxVersion, const QStringList& lines); … … 364 363 _ura = 0.0; 365 364 _health = 0.0; 366 _receptStaID = ""; 365 _receptStaID = ""; 367 366 } 368 367 t_ephSBAS(float rnxVersion, const QStringList& lines); … … 432 431 _TOEsec = 0.0; 433 432 _TOEweek =-1.0; 434 _receptStaID = "";433 _receptStaID = ""; 435 434 } 436 435 t_ephBDS(float rnxVersion, const QStringList& lines); … … 450 449 int _AODC; 451 450 int _URAI; // [0..15] index from RTCM stream 452 mutable double _URA; // user range accuracy 451 mutable double _URA; // user range accuracy [m] 453 452 double _clock_bias; // [s] 454 453 double _clock_drift; // [s/s] … … 476 475 double _TOEweek; // BDT week will be set only in case of RINEX file input 477 476 }; 478 479 477 #endif
Note:
See TracChangeset
for help on using the changeset viewer.