Index: trunk/src/atmsdriver/model/Highways.java
===================================================================
--- trunk/src/atmsdriver/model/Highways.java	(revision 191)
+++ trunk/src/atmsdriver/model/Highways.java	(revision 194)
@@ -480,11 +480,24 @@
         for (Highway hwy: highways)
         {
-            result.append(""+String.format("%3s ",hwy.routeNumber));
-            for (Station stat: hwy.stations)
-            {
-                result.append(stat.getColorByDirection(stat.direction));
-            }
-            result.append("\n");
-        }
+            for (DIRECTION dir: DIRECTION.values())
+            {
+                StringBuilder lineout = new StringBuilder();
+                lineout.append(""+String.format("%3s ",hwy.routeNumber)+dir.getLetter()+' ');
+                for (Station stat: hwy.stations)
+                {
+                    if (stat.direction == dir)
+                    {
+                        //lineout.append("" + dir.getLetter() + stat.postmile);
+                        lineout.append(stat.getColorByDirection(stat.direction));
+                        //lineout.append("  ");
+                    }
+                }
+                if (lineout.length() > 6)
+                {
+                    result.append(lineout + "\n");
+                }
+            }
+        }
+        result.append("\n");
         return result.toString();
     }
