Changeset 6478 in ntrip for trunk/BNC/src/rinex


Ignore:
Timestamp:
Dec 28, 2014, 4:08:40 PM (9 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/corrfile.cpp

    r6455 r6478  
    6464  _orbCorr.clear();
    6565  _clkCorr.clear();
     66  _codeBiases.clear();
    6667
    6768  while (!stopRead(tt) && _stream.good()) {
     
    7980    _clkCorr.clear();
    8081  }
     82  if (_codeBiases.size() > 0) {
     83    emit newCodeBiases(_codeBiases);
     84    _codeBiases.clear();
     85  }
    8186}
    8287
  • trunk/BNC/src/rinex/corrfile.h

    r6455 r6478  
    4444  void newOrbCorrections(QList<t_orbCorr>);
    4545  void newClkCorrections(QList<t_clkCorr>);
     46  void newCodeBiases(QList<t_satCodeBias>);
    4647
    4748 private:
    4849  bool stopRead(const bncTime& tt);
    49   std::fstream       _stream;
    50   QList<t_orbCorr>   _orbCorr;
    51   QList<t_clkCorr>   _clkCorr;
    52   QMap<QString, int> _corrIODs;
     50  std::fstream         _stream;
     51  QList<t_orbCorr>     _orbCorr;
     52  QList<t_clkCorr>     _clkCorr;
     53  QList<t_satCodeBias> _codeBiases;
     54  QMap<QString, int>   _corrIODs;
    5355};
    5456
Note: See TracChangeset for help on using the changeset viewer.