Changeset 5782 in ntrip


Ignore:
Timestamp:
Aug 4, 2014, 2:22:58 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppThread.cpp

    r5781 r5782  
    4444#include <iomanip>
    4545#include <string.h>
     46#include <map>
    4647
    4748#include "pppThread.h"
     
    197198    newObs->_time.set(oldObs.GPSWeek, oldObs.GPSWeeks);
    198199
    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);
    200211  }
    201212
Note: See TracChangeset for help on using the changeset viewer.