- Timestamp:
- Apr 22, 2012, 9:54:33 AM (13 years ago)
- Location:
- trunk/BNC/rinex
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/reqcedit.cpp
r3993 r3994 99 99 outObsFile.writeHeader(); 100 100 } 101 constt_rnxObsFile::t_rnxEpo* epo = 0;101 t_rnxObsFile::t_rnxEpo* epo = 0; 102 102 while ( (epo = obsFile->nextEpoch()) != 0) { 103 103 if (_begTime.valid() && epo->tt < _begTime) { … … 110 110 if (_samplingRate == 0 || 111 111 fmod(round(epo->tt.gpssec()), _samplingRate) == 0) { 112 applyLLI(epo); 112 113 outObsFile.writeEpoch(epo); 114 } 115 else { 116 rememberLLI(epo); 113 117 } 114 118 } … … 152 156 } 153 157 } 158 159 // 160 //////////////////////////////////////////////////////////////////////////// 161 void t_reqcEdit::rememberLLI(const t_rnxObsFile::t_rnxEpo* epo) { 162 163 } 164 165 // 166 //////////////////////////////////////////////////////////////////////////// 167 void t_reqcEdit::applyLLI(t_rnxObsFile::t_rnxEpo* epo) { 168 169 } -
trunk/BNC/rinex/reqcedit.h
r3989 r3994 48 48 private: 49 49 void editRnxObsHeader(t_rnxObsFile& obsFile); 50 void rememberLLI(const t_rnxObsFile::t_rnxEpo* epo); 51 void applyLLI(t_rnxObsFile::t_rnxEpo* epo); 50 52 51 53 QStringList _obsFileNames; -
trunk/BNC/rinex/rnxobsfile.cpp
r3979 r3994 360 360 // Retrieve single Epoch 361 361 //////////////////////////////////////////////////////////////////////////// 362 constt_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpoch() {362 t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpoch() { 363 363 364 364 _currEpo.clear(); … … 374 374 // Retrieve single Epoch (RINEX Version 3) 375 375 //////////////////////////////////////////////////////////////////////////// 376 constt_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV3() {376 t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV3() { 377 377 378 378 while ( _stream->status() == QTextStream::Ok && !_stream->atEnd() ) { … … 443 443 // Retrieve single Epoch (RINEX Version 2) 444 444 //////////////////////////////////////////////////////////////////////////// 445 constt_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV2() {445 t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV2() { 446 446 447 447 while ( _stream->status() == QTextStream::Ok && !_stream->atEnd() ) { -
trunk/BNC/rinex/rnxobsfile.h
r3991 r3994 90 90 void setStartTime(const bncTime& startTime) {_header._startTime = startTime;} 91 91 92 const t_rnxEpo*nextEpoch();92 t_rnxEpo* nextEpoch(); 93 93 int wlFactorL1(unsigned iPrn) { 94 94 return iPrn <= MAXPRN_GPS ? _header._wlFactorsL1[iPrn] : 1; … … 148 148 void writeEpochV2(const t_rnxEpo* epo); 149 149 void writeEpochV3(const t_rnxEpo* epo); 150 constt_rnxEpo* nextEpochV2();151 constt_rnxEpo* nextEpochV3();150 t_rnxEpo* nextEpochV2(); 151 t_rnxEpo* nextEpochV3(); 152 152 void handleEpochFlag(int flag, const QString& line); 153 153
Note:
See TracChangeset
for help on using the changeset viewer.