Index: /trunk/BNC/src/satObs.cpp
===================================================================
--- /trunk/BNC/src/satObs.cpp	(revision 9681)
+++ /trunk/BNC/src/satObs.cpp	(revision 9682)
@@ -36,7 +36,7 @@
     }
     *out << corr._prn.toString() << ' ' << setw(11) << corr._iod << ' '
-         << setw(10) << setprecision(4) << corr._dClk       * t_CST::c << ' '
-         << setw(10) << setprecision(4) << corr._dotDClk    * t_CST::c << ' '
-         << setw(10) << setprecision(4) << corr._dotDotDClk * t_CST::c << endl;
+         << setw(10) << setprecision(4) << corr._dClk       * t_CST::c      << ' '
+         << setw(10) << setprecision(4) << corr._dotDClk    * t_CST::c *1.e3 << ' '    // m/s => mm/s
+         << setw(10) << setprecision(4) << corr._dotDotDClk * t_CST::c *1.e3 << endl;  // m/s => mm/s
   }
   out->flush();
@@ -70,4 +70,7 @@
     corr._dotDClk    /= t_CST::c;
     corr._dotDotDClk /= t_CST::c;
+
+    corr._dotDClk    /= 1.e3;  // mm/s => m/s
+    corr._dotDotDClk /= 1.e3;  // mm/s => m/s
 
     corrList.push_back(corr);
@@ -106,7 +109,7 @@
          << setw(10) << setprecision(4) << corr._xr[1]     << ' '
          << setw(10) << setprecision(4) << corr._xr[2]     << "    "
-         << setw(10) << setprecision(4) << corr._dotXr[0]  << ' '
-         << setw(10) << setprecision(4) << corr._dotXr[1]  << ' '
-         << setw(10) << setprecision(4) << corr._dotXr[2]  << endl;
+         << setw(10) << setprecision(4) << corr._dotXr[0] * 1.e3  << ' '   // m/s => mm/s
+         << setw(10) << setprecision(4) << corr._dotXr[1] * 1.e3  << ' '   // m/s => mm/s
+         << setw(10) << setprecision(4) << corr._dotXr[2] * 1.e3 << endl;  // m/s => mm/s
   }
   out->flush();
@@ -136,4 +139,6 @@
        >> corr._xr[0]    >> corr._xr[1]    >> corr._xr[2]
        >> corr._dotXr[0] >> corr._dotXr[1] >> corr._dotXr[2];
+
+    corr._dotXr /= 1.e3; // mm/s => m/s
 
     if (corr._prn.system() == 'E') {
