Index: /trunk/BNC/src/PPP/pppThread.cpp
===================================================================
--- /trunk/BNC/src/PPP/pppThread.cpp	(revision 5781)
+++ /trunk/BNC/src/PPP/pppThread.cpp	(revision 5782)
@@ -44,4 +44,5 @@
 #include <iomanip>
 #include <string.h>
+#include <map>
 
 #include "pppThread.h"
@@ -197,5 +198,15 @@
     newObs->_time.set(oldObs.GPSWeek, oldObs.GPSWeeks);
 
-    pppSatObs.push_back(newObs);
+    map<string, t_pppObs*> pppObsMap;
+    for (unsigned iEntry = 0; iEntry < GNSSENTRY_NUMBER; iEntry++) {
+      string hlp(oldObs.rnxStr(iEntry).toAscii().data());
+      if (hlp.length() == 3) {
+        char   obsType    = hlp[0];
+        string rnxType2ch = hlp.substr(1);
+        cout << iEntry << ' ' << obsType << ' ' << rnxType2ch << endl;
+      }
+    }
+
+    ////    pppSatObs.push_back(newObs);
   }
 
