Changeset 795 in ntrip


Ignore:
Timestamp:
Apr 8, 2008, 4:40:39 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.cpp

    r794 r795  
    215215    ColumnVector xx(4);
    216216
    217     in >> prn >> xx(1) >> xx(2) >> xx(3) >> xx(4);
     217    in >> prn >> xx(1) >> xx(2) >> xx(3) >> xx(4);
     218    xx(4) *= 1e6;
    218219
    219220    processSatellite(mjd, sec, prn, xx);
     
    226227                             const ColumnVector& xx) {
    227228
    228 }
     229  // No broadcast ephemeris available
     230  // --------------------------------
     231  if ( !_ephList.contains(prn) ) {
     232    return;
     233  }
     234
     235  t_ephPair* pair = _ephList[prn];
     236  gpsEph*    ep   = pair->eph;
     237
     238  cout << "PRN, CLK " << prn.toAscii().data() << " "
     239       << ep->clock_bias << " " << xx(4) << endl;
     240}
Note: See TracChangeset for help on using the changeset viewer.