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


Ignore:
Timestamp:
Apr 8, 2008, 5:15:07 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.cpp

    r797 r798  
    198198
    199199  QString hlp;
    200   int     mjd, numSat;
    201   double  sec;
    202 
    203   in >> hlp >> mjd >> sec >> numSat;
     200  int     GPSweek, numSat;
     201  double  GPSweeks;
     202
     203  in >> hlp >> GPSweek >> GPSweeks >> numSat;
    204204
    205205  for (int ii = 1; ii <= numSat; ii++) {
     
    214214    xx(4) *= 1e-6;
    215215
    216     processSatellite(mjd, sec, prn, xx);
     216    processSatellite(GPSweek, GPSweeks, prn, xx);
    217217  }
    218218}
     
    220220//
    221221////////////////////////////////////////////////////////////////////////////
    222 void t_bns::processSatellite(int mjd, double sec, const QString& prn,
     222void t_bns::processSatellite(int GPSweek, double GPSweeks, const QString& prn,
    223223                             const ColumnVector& xx) {
    224224
Note: See TracChangeset for help on using the changeset viewer.