Changeset 3996 in ntrip
- Timestamp:
- Apr 22, 2012, 10:18:47 AM (13 years ago)
- Location:
- trunk/BNC/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/rinex/reqcedit.cpp ¶
r3995 r3996 170 170 char sys = rnxSat.satSys; 171 171 for (int iType = 0; iType < obsFile->nTypes(sys); iType++) { 172 if (!_lli.contains(iType)) { 173 _lli[iType] = 0; 174 } 175 if (rnxSat.lli[iType] & 1) { 176 _lli[iType] |= 1; 177 } 172 178 } 173 179 } … … 178 184 void t_reqcEdit::applyLLI(const t_rnxObsFile* obsFile, 179 185 t_rnxObsFile::t_rnxEpo* epo) { 180 if (_samplingRate == 0) { 186 187 if (_samplingRate == 0) { 181 188 return; 182 189 } 183 } 190 191 for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) { 192 t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iSat]; 193 char sys = rnxSat.satSys; 194 for (int iType = 0; iType < obsFile->nTypes(sys); iType++) { 195 if (_lli.contains(iType) && _lli[iType] & 1) { 196 rnxSat.lli[iType] |= 1; 197 } 198 } 199 } 200 201 _lli.clear(); 202 } -
TabularUnified trunk/BNC/rinex/reqcedit.h ¶
r3995 r3996 58 58 bncTime _begTime; 59 59 bncTime _endTime; 60 QMap<int, int> _lli; 60 61 }; 61 62
Note:
See TracChangeset
for help on using the changeset viewer.