- Timestamp:
- Aug 4, 2014, 2:37:21 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppThread.cpp
r5782 r5783 204 204 char obsType = hlp[0]; 205 205 string rnxType2ch = hlp.substr(1); 206 cout << iEntry << ' ' << obsType << ' ' << rnxType2ch << endl; 206 if (obsType == 'C' || obsType == 'L') { 207 t_pppObs* pppObs = 0; 208 if (pppObsMap.find(rnxType2ch) == pppObsMap.end()) { 209 pppObs = new t_pppObs(); 210 pppObsMap[rnxType2ch] = pppObs; 211 } 212 else { 213 pppObs = pppObsMap[rnxType2ch]; 214 } 215 if (obsType == 'C') { 216 pppObs->_code = oldObs._measdata[iEntry]; 217 pppObs->_codeValid = true; 218 } 219 else if (obsType == 'L') { 220 pppObs->_phase = oldObs._measdata[iEntry]; 221 pppObs->_phaseValid = true; 222 } 223 } 207 224 } 208 225 }
Note:
See TracChangeset
for help on using the changeset viewer.