Changeset 3757 in ntrip


Ignore:
Timestamp:
Apr 1, 2012, 4:07:39 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/rinex
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rinex/bncpostprocess.cpp

    r3755 r3757  
    141141    // ----------------
    142142    t_eph* eph = 0;
    143     while ( (eph = _rnxNavFile->getNextEph(epo->tt)) != 0 ) {
     143    const QMap<QString, int>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0;
     144    while ( (eph = _rnxNavFile->getNextEph(epo->tt, corrIODs)) != 0 ) {
    144145      if (_pppClient->putNewEph(eph) != success) {
    145146        delete eph; eph = 0;
  • trunk/BNC/rinex/rnxnavfile.cpp

    r3753 r3757  
    161161// Read Next Ephemeris
    162162////////////////////////////////////////////////////////////////////////////
    163 t_eph* t_rnxNavFile::getNextEph(const bncTime& tt) {
     163t_eph* t_rnxNavFile::getNextEph(const bncTime& tt,
     164                                const QMap<QString, int>* corrIODs) {
    164165  while (!_ephs.empty()) {
    165166    t_eph* eph = _ephs.front();
  • trunk/BNC/rinex/rnxnavfile.h

    r3748 r3757  
    5252  t_rnxNavFile(QString fileName);
    5353  ~t_rnxNavFile();
    54   t_eph* getNextEph(const bncTime& tt);
     54  t_eph* getNextEph(const bncTime& tt, const QMap<QString, int>* corrIODs);
    5555  float version() const {return _header.version();}
    5656  bool  glonass() const {return _header.glonass();}
Note: See TracChangeset for help on using the changeset viewer.