Index: trunk/src/atmsdriver/model/Highways.java
===================================================================
--- trunk/src/atmsdriver/model/Highways.java	(revision 260)
+++ trunk/src/atmsdriver/model/Highways.java	(revision 266)
@@ -556,21 +556,27 @@
                             + stat.postmile;
                     PostmileCoords.Postmile currentPM = pmList.find(pmID);
+                    if (currentPM == null)
+                    { 
+                    Logger.getLogger(Highways.class.getName()).log(Level.INFO, 
+                            "Postmile Coords lookup couldn't find Station: "+pmID,
+                            " ");
+                    }
                     if (currentPM != null)
                     {    
-                    //lineout.append("" + dir.getLetter() + stat.postmile);
-                    //lineout.append(stat.getColorByDirection(dir));
-                    String outString = currentPM.toJson();
-                    // replace the color code with the color name
-                    String colorName="";
-                    switch (stat.getColorByDirection(stat.direction))
-                    {
-                        case '@': colorName = "red";break;
-                        case '+': colorName = "yellow"; break;
-                        case '-': colorName = "lime";break;
-                        case ' ': colorName = "lime";break;
-                    }
-                    outString = outString.replace("desiredcolor",colorName);
-                    lineout.append(outString);
-                    lineout.append("  ");
+                        //lineout.append("" + dir.getLetter() + stat.postmile);
+                        //lineout.append(stat.getColorByDirection(dir));
+                        String outString = currentPM.toJson();
+                        // replace the color code with the color name
+                        String colorName="";
+                        switch (stat.getColorByDirection(stat.direction))
+                        {
+                            case '@': colorName = "red";break;
+                            case '+': colorName = "yellow"; break;
+                            case '-': colorName = "lime";break;
+                            case ' ': colorName = "lime";break;
+                        }
+                        outString = outString.replace("desiredcolor",colorName);
+                        lineout.append(outString);
+                        lineout.append("  ");
                     }
                 }
