Changeset 5782 in ntrip
- Timestamp:
- Aug 4, 2014, 2:22:58 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppThread.cpp
r5781 r5782 44 44 #include <iomanip> 45 45 #include <string.h> 46 #include <map> 46 47 47 48 #include "pppThread.h" … … 197 198 newObs->_time.set(oldObs.GPSWeek, oldObs.GPSWeeks); 198 199 199 pppSatObs.push_back(newObs); 200 map<string, t_pppObs*> pppObsMap; 201 for (unsigned iEntry = 0; iEntry < GNSSENTRY_NUMBER; iEntry++) { 202 string hlp(oldObs.rnxStr(iEntry).toAscii().data()); 203 if (hlp.length() == 3) { 204 char obsType = hlp[0]; 205 string rnxType2ch = hlp.substr(1); 206 cout << iEntry << ' ' << obsType << ' ' << rnxType2ch << endl; 207 } 208 } 209 210 //// pppSatObs.push_back(newObs); 200 211 } 201 212
Note:
See TracChangeset
for help on using the changeset viewer.