Changeset 3748 in ntrip for trunk/BNC/rinex/bncpostprocess.cpp


Ignore:
Timestamp:
Mar 30, 2012, 11:21:04 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r3721 r3748  
    124124  }
    125125
    126   // Read Ephemerides
    127   // ----------------
    128   t_eph* eph = 0;
    129   while ( (eph = _rnxNavFile->getNextEph()) != 0 ) {
    130     if (_pppClient->putNewEph(eph) != success) {
    131       delete eph; eph = 0;
    132     }
    133   }
    134 
    135126  // Read/Process Observations
    136127  // -------------------------
     
    140131    ++nEpo;
    141132
     133    // Get Corrections
     134    // ---------------
    142135    if (_corrFile) {
    143136      _corrFile->syncRead(epo->tt);
     137    }
     138
     139    // Get Ephemerides
     140    // ----------------
     141    t_eph* eph = 0;
     142    while ( (eph = _rnxNavFile->getNextEph(epo->tt)) != 0 ) {
     143      if (_pppClient->putNewEph(eph) != success) {
     144        delete eph; eph = 0;
     145      }
    144146    }
    145147
Note: See TracChangeset for help on using the changeset viewer.