Changeset 3995 in ntrip
- Timestamp:
- Apr 22, 2012, 10:03:57 AM (13 years ago)
- Location:
- trunk/BNC/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/rinex/reqcedit.cpp ¶
r3994 r3995 110 110 if (_samplingRate == 0 || 111 111 fmod(round(epo->tt.gpssec()), _samplingRate) == 0) { 112 applyLLI(epo); 112 applyLLI(obsFile, epo); 113 113 outObsFile.writeEpoch(epo); 114 114 } 115 115 else { 116 rememberLLI(epo); 116 rememberLLI(obsFile, epo); 117 117 } 118 118 } … … 159 159 // 160 160 //////////////////////////////////////////////////////////////////////////// 161 void t_reqcEdit::rememberLLI(const t_rnxObsFile::t_rnxEpo* epo) { 161 void t_reqcEdit::rememberLLI(const t_rnxObsFile* obsFile, 162 const t_rnxObsFile::t_rnxEpo* epo) { 162 163 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 } 163 174 } 164 175 165 176 // 166 177 //////////////////////////////////////////////////////////////////////////// 167 void t_reqcEdit::applyLLI(t_rnxObsFile::t_rnxEpo* epo) { 168 178 void t_reqcEdit::applyLLI(const t_rnxObsFile* obsFile, 179 t_rnxObsFile::t_rnxEpo* epo) { 180 if (_samplingRate == 0) { 181 return; 182 } 169 183 } -
TabularUnified trunk/BNC/rinex/reqcedit.h ¶
r3994 r3995 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 void rememberLLI(const t_rnxObsFile* obsFile, const t_rnxObsFile::t_rnxEpo* epo); 51 void applyLLI(const t_rnxObsFile* obsFile, t_rnxObsFile::t_rnxEpo* epo); 52 52 53 53 QStringList _obsFileNames;
Note:
See TracChangeset
for help on using the changeset viewer.