Changeset 4262 in ntrip


Ignore:
Timestamp:
Jun 22, 2012, 10:22:58 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4260 r4262  
    4545#include "reqcedit.h"
    4646#include "bncutils.h"
     47#include "bncpostprocess.h"
    4748
    4849using namespace std;
     
    119120        << obsFile->fileName().toAscii().data() << endl << endl;
    120121
     122  // Loop over all Epochs
     123  // --------------------
    121124  t_rnxObsFile::t_rnxEpo* epo = 0;
    122125  while ( (epo = obsFile->nextEpoch()) != 0) {
    123126
    124   }
     127    // Loop over all satellites
     128    // ------------------------
     129    for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) {
     130      const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs];
     131      t_obs obs;
     132      t_postProcessing::setObsFromRnx(obsFile, epo, rnxSat, obs);
     133
     134      if (obs.satSys == 'R') {
     135        // TODO: set channel number
     136      }
     137
     138    }
     139
     140  } // while (epo)
    125141
    126142  _log->flush();
Note: See TracChangeset for help on using the changeset viewer.