Changeset 799 in ntrip
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r798 r799 18 18 19 19 #include "bns.h" 20 #include "bnsutils.h" 20 21 21 22 using namespace std; … … 232 233 gpsEph* ep = pair->eph; 233 234 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 46 46 void openCaster(); 47 47 void readEpoch(); 48 void processSatellite(int mjd, double sec, const QString& prn,48 void processSatellite(int GPSweek, double GPSweeks, const QString& prn, 49 49 const ColumnVector& xx); 50 50
Note:
See TracChangeset
for help on using the changeset viewer.