diff --git a/RTCP/Run/src/OLAP.parset b/RTCP/Run/src/OLAP.parset
index 82a5a0a16c1e6f961a8a2fb37957e767ad515d03..96df07c91dc2ecfe7240a05a430e14f2c40540b4 100644
--- a/RTCP/Run/src/OLAP.parset
+++ b/RTCP/Run/src/OLAP.parset
@@ -1,6 +1,16 @@
 #Keep the antenna positions in ITRF2005 coordinates, epoch 2009.25.
 #Storing a position on earth given as (X,Y,Z) in (M,M,M)
 
+PIC.Core.RS106LBA.phaseCenter   = [3829261.468       , 469162.237        , 5062137.281      ]
+PIC.Core.RS106LBA.position      = [3829261.468       , 469162.237        , 5062137.281      ]
+PIC.Core.RS106HBA.phaseCenter   = [3829205.641       , 469142.485        , 5062180.973      ]
+PIC.Core.RS106HBA.position      = [3829205.641       , 469142.485        , 5062180.973      ]
+
+PIC.Core.RS208LBA.phaseCenter   = [3847753.353       , 466962.762        , 5048397.215      ]
+PIC.Core.RS208LBA.position      = [3847753.353       , 466962.762        , 5048397.215      ]
+PIC.Core.RS208HBA.phaseCenter   = [3847810.094       , 466929.659        , 5048357.193      ]
+PIC.Core.RS208HBA.position      = [3847810.094       , 466929.659        , 5048357.193      ]
+
 PIC.Core.CS302LBA.phaseCenter	= [3827945.959604251,  459792.591307241,   5063989.987604071]
 PIC.Core.CS302LBA.position	= [3827945.959604251,  459792.591307241,   5063989.987604071]
 PIC.Core.CS302HBA0.phaseCenter	= [3827973.269609978,  459728.57630928187, 5063975.271605821]
diff --git a/RTCP/Run/src/Stations.py b/RTCP/Run/src/Stations.py
index 80e944332d6d2f5ab50c6b5e6247c318af8e4cf6..f2ad0509de953b25dbb71cda48a3d9930de049c2 100644
--- a/RTCP/Run/src/Stations.py
+++ b/RTCP/Run/src/Stations.py
@@ -14,7 +14,7 @@ class Station(object):
         return self.name
 
     def getPset(self, partition):
-	return IONodes.get(partition).index(self.ionode)
+        return IONodes.get(partition).index(self.ionode)
 
     def getIONode(self):
         return self.ionode
@@ -22,6 +22,12 @@ class Station(object):
 
 # Full station mode
 
+RS106LBA  = [Station('RS106LBA',  '10.170.0.174', ['10.170.0.174:4346', '10.170.0.174:4347', '10.170.0.174:4348', '10.170.0.174:4349'])]
+RS106HBA  = [Station('RS106HBA',  '10.170.0.174', ['10.170.0.174:4346', '10.170.0.174:4347', '10.170.0.174:4348', '10.170.0.174:4349'])]
+
+RS208LBA  = [Station('RS208LBA',  '10.170.0.162', ['10.170.0.162:4346', '10.170.0.162:4347', '10.170.0.162:4348', '10.170.0.162:4349'])]
+RS208HBA  = [Station('RS208HBA',  '10.170.0.162', ['10.170.0.162:4346', '10.170.0.162:4347', '10.170.0.162:4348', '10.170.0.162:4349'])]
+
 CS302LBA  = [Station('CS302LBA',  '10.170.0.21', ['10.170.0.21:4346', '10.170.0.21:4347', '10.170.0.21:4348', '10.170.0.21:4349'])]
 CS302HBA  = [Station('CS302HBA',  '10.170.0.21', ['10.170.0.21:4346', '10.170.0.21:4347', '10.170.0.21:4348', '10.170.0.21:4349'])]
 CS302HBA0 = [Station('CS302HBA0', '10.170.0.21', ['10.170.0.21:4346', '10.170.0.21:4347', '10.170.0.21:4348', '10.170.0.21:4349'])]