Changeset 3995 in ntrip


Ignore:
Timestamp:
Apr 22, 2012, 10:03:57 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/rinex
Files:
2 edited

Legend:

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

    r3994 r3995  
    110110      if (_samplingRate == 0 ||
    111111          fmod(round(epo->tt.gpssec()), _samplingRate) == 0) {
    112         applyLLI(epo);
     112        applyLLI(obsFile, epo);
    113113        outObsFile.writeEpoch(epo);
    114114      }
    115115      else {
    116         rememberLLI(epo);
     116        rememberLLI(obsFile, epo);
    117117      }
    118118    }
     
    159159//
    160160////////////////////////////////////////////////////////////////////////////
    161 void t_reqcEdit::rememberLLI(const t_rnxObsFile::t_rnxEpo* epo) {
     161void t_reqcEdit::rememberLLI(const t_rnxObsFile* obsFile,
     162                             const t_rnxObsFile::t_rnxEpo* epo) {
    162163
     164  if (_samplingRate == 0) {
     165    return;
     166  }
     167
     168  for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
     169    const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iSat];
     170    char                          sys    = rnxSat.satSys;
     171    for (int iType = 0; iType < obsFile->nTypes(sys); iType++) {
     172    }
     173  }
    163174}
    164175 
    165176//
    166177////////////////////////////////////////////////////////////////////////////
    167 void t_reqcEdit::applyLLI(t_rnxObsFile::t_rnxEpo* epo) {
    168 
     178void t_reqcEdit::applyLLI(const t_rnxObsFile* obsFile,
     179                          t_rnxObsFile::t_rnxEpo* epo) {
     180  if (_samplingRate == 0) {
     181    return;
     182  }
    169183}
  • trunk/BNC/rinex/reqcedit.h

    r3994 r3995  
    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);
     50  void rememberLLI(const t_rnxObsFile* obsFile, const t_rnxObsFile::t_rnxEpo* epo);
     51  void applyLLI(const t_rnxObsFile* obsFile, t_rnxObsFile::t_rnxEpo* epo);
    5252
    5353  QStringList            _obsFileNames;
Note: See TracChangeset for help on using the changeset viewer.