Index: trunk/BNC/combination/bnccomb.cpp
===================================================================
--- trunk/BNC/combination/bnccomb.cpp	(revision 3053)
+++ trunk/BNC/combination/bnccomb.cpp	(revision 3054)
@@ -381,9 +381,19 @@
                           xc.data(), vv.data());
       bncPPPclient::applyCorr(resTime, corr, xc, vv);
+
+      // Relativistic Correction
+      // -----------------------
       xc(4) += 2.0 * DotProduct(xc.Rows(1,3),vv) / t_CST::c / t_CST::c;
+
+      // Correction Phase Center --> CoM
+      // -------------------------------
       if (_antex) {
         ColumnVector neu(3);
         if (_antex->offset(corr->prn, neu) == success) {
-
+          ColumnVector dx;
+          RSW_to_XYZ(xc.Rows(1,3), vv, neu, dx);
+          xc(1) += dx(1);
+          xc(2) += dx(2);
+          xc(3) += dx(3);
         }
         else {
