Changeset 2575 in ntrip
- Timestamp:
- Aug 23, 2010, 6:25:26 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncpppclient.cpp ¶
r2550 r2575 103 103 delete _model; 104 104 delete _epoData; 105 QMapIterator<QString, t_eph*> it(_eph); 105 QMapIterator<QString, t_ephPair*> it(_eph); 106 106 while (it.hasNext()) { 107 107 it.next(); … … 250 250 251 251 if (_eph.contains(prn)) { 252 t_ephGPS* ee = static_cast<t_ephGPS*>(_eph.value(prn)); 253 if ( (ee->GPSweek() < gpseph.GPSweek) || 254 (ee->GPSweek() == gpseph.GPSweek && 255 ee->TOC() < gpseph.TOC) ) { 256 ee->set(&gpseph); 257 } 258 } 259 else { 260 t_ephGPS* ee = new t_ephGPS(); 261 ee->set(&gpseph); 262 _eph[prn] = ee; 252 t_ephGPS* eLast = static_cast<t_ephGPS*>(_eph.value(prn)->last); 253 t_ephGPS* ePrev = static_cast<t_ephGPS*>(_eph.value(prn)->prev); 254 if ( (eLast->GPSweek() < gpseph.GPSweek) || 255 (eLast->GPSweek() == gpseph.GPSweek && 256 eLast->TOC() < gpseph.TOC) ) { 257 delete ePrev; 258 ePrev = new t_ephGPS(*eLast); 259 eLast->set(&gpseph); 260 } 261 } 262 else { 263 t_ephGPS* eLast = new t_ephGPS(); 264 eLast->set(&gpseph); 265 _eph.insert(prn, new t_ephPair()); 266 _eph[prn]->last = eLast; 263 267 } 264 268 } … … 275 279 int tow = gloeph.GPSTOW; 276 280 updatetime(&ww, &tow, gloeph.tb*1000, 0); // Moscow -> GPS 277 t_ephGlo* ee = static_cast<t_ephGlo*>(_eph.value(prn)); 278 if (ee->GPSweek() < ww || 279 (ee->GPSweek() == ww && ee->GPSweeks() < tow)) { 280 ee->set(&gloeph); 281 } 282 } 283 else { 284 t_ephGlo* ee = new t_ephGlo(); 285 ee->set(&gloeph); 286 _eph[prn] = ee; 281 t_ephGlo* eLast = static_cast<t_ephGlo*>(_eph.value(prn)->last); 282 t_ephGlo* ePrev = static_cast<t_ephGlo*>(_eph.value(prn)->prev); 283 if (eLast->GPSweek() < ww || 284 (eLast->GPSweek() == ww && eLast->GPSweeks() < tow)) { 285 delete ePrev; 286 ePrev = new t_ephGlo(*eLast); 287 eLast->set(&gloeph); 288 } 289 } 290 else { 291 t_ephGlo* eLast = new t_ephGlo(); 292 eLast->set(&gloeph); 293 _eph.insert(prn, new t_ephPair()); 294 _eph[prn]->last = eLast; 287 295 } 288 296 } … … 426 434 427 435 if (_eph.contains(prn)) { 428 t_eph* ee = _eph.value(prn); 436 t_eph* ee = _eph.value(prn)->last; 429 437 ee->position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data()); 430 438 … … 432 440 if (_corr.contains(prn)) { 433 441 t_corr* cc = _corr.value(prn); 434 442 if (ee->IOD() == cc->iod && (tt - cc->tt) < MAXAGE) { 435 443 applyCorr(tt, cc, xc, vv); 436 444 return success; -
TabularUnified trunk/BNC/bncpppclient.h ¶
r2548 r2575 143 143 }; 144 144 145 class t_ephPair { 146 public: 147 t_ephPair() { 148 last = 0; 149 prev = 0; 150 } 151 ~t_ephPair() { 152 delete last; 153 delete prev; 154 } 155 t_eph* last; 156 t_eph* prev; 157 }; 158 145 159 t_irc getSatPos(const bncTime& tt, const QString& prn, 146 160 ColumnVector& xc, ColumnVector& vv); … … 152 166 QByteArray _staID; 153 167 QMutex _mutex; 154 QMap<QString, t_eph *>_eph;168 QMap<QString, t_ephPair*> _eph; 155 169 QMap<QString, t_corr*> _corr; 156 170 QMap<QString, t_bias*> _bias;
Note:
See TracChangeset
for help on using the changeset viewer.