Index: trunk/src/atmsdriver/model/Station.java
===================================================================
--- trunk/src/atmsdriver/model/LoopDetectorStation.java	(revision 79)
+++ trunk/src/atmsdriver/model/Station.java	(revision 84)
@@ -5,18 +5,18 @@
 import org.w3c.dom.Element;
 
-/** A LoopDetectorStation is a simulation of a station in a traffic network.
+/** A Station is a simulation of a station in a traffic network.
  *  
- *  A LoopDetectorStation (LDS) contains static meta data about the station, and
- *  two dynamic attributes, MLTotVol and OppTotVol. 
- * 
- *  A single LDS contains multiple LoopDetectors, which
- *  contain data for a single lane on one direction of the freeway. A LDS
- *  is specific to a single freeway, direction, and postmile.
+ *  A Station (LDS) contains static meta data about the station, and
+  two dynamic attributes, MLTotVol and OppTotVol. 
+ 
+  A single LDS contains multiple LoopDetectors, which
+  contain data for a single lane on one direction of the freeway. A LDS
+  is specific to a single freeway, direction, and postmile.
  *
  * @author John A. Torres
  * @version 9/10/2017
  */
-public class LoopDetectorStation {
-    /* Static LoopDetectorStation meta data */
+public class Station implements Comparable {
+    /* Static Station meta data */
     final private int lineNum;
     final private int ldsID; // double check
@@ -28,10 +28,10 @@
     final private DIRECTION direction;
     
-    /* Dynamic LoopDetectorStation data */
+    /* Dynamic Station data */
     private int MLTotVol;
     private int OppTotVol;
     
     /* Constructor */
-    public LoopDetectorStation(int lineNum, int ldsID, int drop,
+    public Station(int lineNum, int ldsID, int drop,
             String location, List<LoopDetector> loops, int fwy, 
             DIRECTION direction, double postmile)
@@ -48,4 +48,9 @@
         this.MLTotVol = 0;
         this.OppTotVol = 0;
+    }
+
+    @Override
+    public int compareTo(Object o) {
+        
     }
     
