- Timestamp:
- Jan 16, 2010, 9:10:00 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppclient.cpp
r2264 r2268 225 225 226 226 if (_eph.contains(prn)) { 227 int ww = gloeph.GPSWeek; 228 int tow = gloeph.GPSTOW; 229 updatetime(&ww, &tow, gloeph.tb*1000, 0); // Moscow -> GPS 227 230 t_ephGlo* ee = static_cast<t_ephGlo*>(_eph.value(prn)); 228 if ( (ee->GPSweek() < gloeph.GPSWeek) || 229 (ee->GPSweek() == gloeph.GPSWeek && 230 ee->GPSweeks() < gloeph.GPSTOW) ) { 231 if (ee->GPSweek() < ww || 232 (ee->GPSweek() == ww && ee->GPSweeks() < tow)) { 231 233 ee->set(&gloeph); 232 234 }
Note:
See TracChangeset
for help on using the changeset viewer.