Index: /trunk/GnssCenter/monitor/monitor.cpp
===================================================================
--- /trunk/GnssCenter/monitor/monitor.cpp	(revision 5491)
+++ /trunk/GnssCenter/monitor/monitor.cpp	(revision 5492)
@@ -285,5 +285,14 @@
         double lonDeg = ell[1] * 180.0 / M_PI;
         QString str   = sat->_prn.c_str();
-        QColor color = Qt::darkBlue;
+        QColor color;
+        if      (str[0] == 'G') {
+          color = Qt::darkBlue;
+        }
+        else if (str[0] == 'R') {
+          color = Qt::darkGreen;
+        }
+        else {
+          color = Qt::black;
+        }
         t_worldPlot::t_point* point  = new t_worldPlot::t_point(color, str, latDeg, lonDeg);
         points.append(point);
