Changeset 781 in ntrip for trunk/BNS/bns.cpp


Ignore:
Timestamp:
Apr 8, 2008, 10:32:46 AM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.cpp

    r780 r781  
    166166  if (pair->eph == 0) {
    167167    pair->eph = ep;
     168      cout << "A: new eph: " << ep->prn.toAscii().data() << " "
     169           << ep->GPSweek << " " << ep->TOC << endl;
    168170  }
    169171  else {
    170172    if (ep->GPSweek >  pair->eph->GPSweek ||
    171173        (ep->GPSweek == pair->eph->GPSweek && ep->TOC > pair->eph->TOC)) {
     174      cout << "B: new eph: " << ep->prn.toAscii().data() << " "
     175           << ep->GPSweek << " " << ep->TOC << endl;
    172176      delete pair->oldEph;
    173177      pair->oldEph = pair->eph;
Note: See TracChangeset for help on using the changeset viewer.