Changeset 799 in ntrip


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

* empty log message *

Location:
trunk/BNS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.cpp

    r798 r799  
    1818
    1919#include "bns.h"
     20#include "bnsutils.h"
    2021
    2122using namespace std;
     
    232233  gpsEph*    ep   = pair->eph;
    233234
    234   cout << "PRN, CLK " << prn.toAscii().data() << " "
    235        << ep->clock_bias << " " << xx(4) << endl;
    236 }
     235  ColumnVector xB(4);
     236
     237  satellitePosition(GPSweeks, ep, xB(1), xB(2), xB(3), xB(4));
     238
     239  cout << GPSweek << " " << GPSweeks << " "
     240       << xx(1) << " " << xx(2) << " " << xx(3) << " " <<  xx(4) << " "
     241       << xB(1) << " " << xB(2) << " " << xB(3) << " " <<  xB(4) << endl;
     242}
  • trunk/BNS/bns.h

    r784 r799  
    4646  void openCaster();
    4747  void readEpoch();
    48   void processSatellite(int mjd, double sec, const QString& prn,
     48  void processSatellite(int GPSweek, double GPSweeks, const QString& prn,
    4949                        const ColumnVector& xx);
    5050
Note: See TracChangeset for help on using the changeset viewer.