Index: trunk/GnssCenter/monitor/monitor.cpp
===================================================================
--- trunk/GnssCenter/monitor/monitor.cpp	(revision 5481)
+++ trunk/GnssCenter/monitor/monitor.cpp	(revision 5482)
@@ -47,8 +47,11 @@
   setCentralWidget(_tabWidget);
 
-  // World Plot
-  // ----------
-  _plot = new t_worldPlot();
-  _tabWidget->addTab(_plot, "Stations");
+  // World Plots
+  // -----------
+  _plotStations = new t_worldPlot();
+  _tabWidget->addTab(_plotStations, "Stations");
+
+  _plotSatellites = new t_worldPlot();
+  _tabWidget->addTab(_plotSatellites, "Satellites");
 
   // Tool Bar
@@ -222,5 +225,5 @@
       }
     }
-    _plot->slotNewPoints(points);
+    _plotStations->slotNewPoints(points);
 
     QListIterator<t_worldPlot::t_point*> it(points);
Index: trunk/GnssCenter/monitor/monitor.h
===================================================================
--- trunk/GnssCenter/monitor/monitor.h	(revision 5481)
+++ trunk/GnssCenter/monitor/monitor.h	(revision 5482)
@@ -40,8 +40,9 @@
   QAction*                      _actStartThrift;
   QAction*                      _actStopThrift;
-  t_worldPlot*                  _plot;
   QString                       _host;
   QString                       _port;
   t_thriftClient*               _thriftClient;
+  t_worldPlot*                  _plotStations;
+  t_worldPlot*                  _plotSatellites;
   std::vector<t_thriftResult*>* _results;
 };
