Index: trunk/BNC/src/bnccaster.cpp
===================================================================
--- trunk/BNC/src/bnccaster.cpp	(revision 4793)
+++ trunk/BNC/src/bnccaster.cpp	(revision 4987)
@@ -340,4 +340,6 @@
     QList<t_obs> allObs = _epochs->values(sec);
 
+    bool firstEpoLine = true;
+
     QListIterator<t_obs> it(allObs);
     while (it.hasNext()) {
@@ -349,8 +351,10 @@
           ostringstream oStr;
           oStr.setf(ios::showpoint | ios::fixed);
-          oStr << obs.StatID                                        << " " 
-               << obs.GPSWeek                                       << " "
-               << setprecision(7) << obs.GPSWeeks                   << " "
-               << bncRinex::asciiSatLine(obs) << endl;
+          if (firstEpoLine) {
+            firstEpoLine = false;
+            oStr << "> " << obs.GPSWeek << ' ' 
+                 << setprecision(7) << obs.GPSWeeks << endl;;
+          }
+          oStr << obs.StatID << ' ' << bncRinex::asciiSatLine(obs) << endl;
           if (!it.hasNext()) { 
             oStr << endl;
