Changeset 3994 in ntrip


Ignore:
Timestamp:
Apr 22, 2012, 9:54:33 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/rinex
Files:
4 edited

Legend:

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

    r3993 r3994  
    9999      outObsFile.writeHeader();
    100100    }
    101     const t_rnxObsFile::t_rnxEpo* epo = 0;
     101    t_rnxObsFile::t_rnxEpo* epo = 0;
    102102    while ( (epo = obsFile->nextEpoch()) != 0) {
    103103      if (_begTime.valid() && epo->tt < _begTime) {
     
    110110      if (_samplingRate == 0 ||
    111111          fmod(round(epo->tt.gpssec()), _samplingRate) == 0) {
     112        applyLLI(epo);
    112113        outObsFile.writeEpoch(epo);
     114      }
     115      else {
     116        rememberLLI(epo);
    113117      }
    114118    }
     
    152156  }
    153157}
     158
     159//
     160////////////////////////////////////////////////////////////////////////////
     161void t_reqcEdit::rememberLLI(const t_rnxObsFile::t_rnxEpo* epo) {
     162
     163}
     164 
     165//
     166////////////////////////////////////////////////////////////////////////////
     167void t_reqcEdit::applyLLI(t_rnxObsFile::t_rnxEpo* epo) {
     168
     169}
  • trunk/BNC/rinex/reqcedit.h

    r3989 r3994  
    4848 private:
    4949  void editRnxObsHeader(t_rnxObsFile& obsFile);
     50  void rememberLLI(const t_rnxObsFile::t_rnxEpo* epo);
     51  void applyLLI(t_rnxObsFile::t_rnxEpo* epo);
    5052
    5153  QStringList            _obsFileNames;
  • trunk/BNC/rinex/rnxobsfile.cpp

    r3979 r3994  
    360360// Retrieve single Epoch
    361361////////////////////////////////////////////////////////////////////////////
    362 const t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpoch() {
     362t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpoch() {
    363363
    364364  _currEpo.clear();
     
    374374// Retrieve single Epoch (RINEX Version 3)
    375375////////////////////////////////////////////////////////////////////////////
    376 const t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV3() {
     376t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV3() {
    377377
    378378  while ( _stream->status() == QTextStream::Ok && !_stream->atEnd() ) {
     
    443443// Retrieve single Epoch (RINEX Version 2)
    444444////////////////////////////////////////////////////////////////////////////
    445 const t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV2() {
     445t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV2() {
    446446
    447447  while ( _stream->status() == QTextStream::Ok && !_stream->atEnd() ) {
  • trunk/BNC/rinex/rnxobsfile.h

    r3991 r3994  
    9090  void  setStartTime(const bncTime& startTime) {_header._startTime = startTime;}
    9191
    92   const t_rnxEpo*    nextEpoch();
     92  t_rnxEpo* nextEpoch();
    9393  int wlFactorL1(unsigned iPrn) {
    9494    return iPrn <= MAXPRN_GPS ? _header._wlFactorsL1[iPrn] : 1;
     
    148148  void writeEpochV2(const t_rnxEpo* epo);
    149149  void writeEpochV3(const t_rnxEpo* epo);
    150   const t_rnxEpo* nextEpochV2();
    151   const t_rnxEpo* nextEpochV3();
     150  t_rnxEpo* nextEpochV2();
     151  t_rnxEpo* nextEpochV3();
    152152  void handleEpochFlag(int flag, const QString& line);
    153153
Note: See TracChangeset for help on using the changeset viewer.