- Timestamp:
- Jun 22, 2012, 10:22:58 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/reqcanalyze.cpp
r4260 r4262 45 45 #include "reqcedit.h" 46 46 #include "bncutils.h" 47 #include "bncpostprocess.h" 47 48 48 49 using namespace std; … … 119 120 << obsFile->fileName().toAscii().data() << endl << endl; 120 121 122 // Loop over all Epochs 123 // -------------------- 121 124 t_rnxObsFile::t_rnxEpo* epo = 0; 122 125 while ( (epo = obsFile->nextEpoch()) != 0) { 123 126 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) 125 141 126 142 _log->flush();
Note:
See TracChangeset
for help on using the changeset viewer.