Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r1100 r1102 384 384 if (sd) { 385 385 QString outLine; 386 processSatellite(oldEph, _caster.at(ic)->crdTrafo(), ep, GPSweek,387 GPSweek s, prn, xx, sd, outLine);386 processSatellite(oldEph, ic, _caster.at(ic)->crdTrafo(), ep, 387 GPSweek, GPSweeks, prn, xx, sd, outLine); 388 388 _caster.at(ic)->printAscii(outLine); 389 389 } … … 407 407 // 408 408 //////////////////////////////////////////////////////////////////////////// 409 void t_bns::processSatellite(int oldEph, bool trafo, t_eph* ep, int GPSweek,410 double GPSweeks, const QString& prn,409 void t_bns::processSatellite(int oldEph, int iCaster, bool trafo, t_eph* ep, 410 int GPSweek, double GPSweeks, const QString& prn, 411 411 const ColumnVector& xx, 412 412 struct ClockOrbit::SatData* sd, … … 444 444 ep->IOD(), dClk, rsw(1), rsw(2), rsw(3)); 445 445 446 if (!oldEph ) {446 if (!oldEph && iCaster == 0) { 447 447 if (_rnx) { 448 448 _rnx->write(GPSweek, GPSweeks, prn, xx); -
trunk/BNS/bns.h
r1072 r1102 59 59 void openCaster(); 60 60 void readEpoch(); 61 void processSatellite(int oldEph, bool trafo, t_eph* ep, int GPSweek,62 double GPSweeks, const QString& prn,61 void processSatellite(int oldEph, int iCaster, bool trafo, t_eph* ep, 62 int GPSweek, double GPSweeks, const QString& prn, 63 63 const ColumnVector& xx, struct ClockOrbit::SatData* sd, 64 64 QString& outLine);
Note:
See TracChangeset
for help on using the changeset viewer.