Changeset 234 in tmcsimulator for trunk/src/atmsdriver/model/LoopDetector.java


Ignore:
Timestamp:
11/24/2017 01:30:38 PM (8 years ago)
Author:
jtorres
Message:

config/vds_data/highways_fullmap.txt: added loopLocationID. LoopDetector?.java: added loopLocationID field. Highways.java: reading in loopLocationID

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/atmsdriver/model/LoopDetector.java

    r202 r234  
    2020    final public int loopID; 
    2121    final public String loopLocation; 
     22    final public String loopLocationID; 
    2223     
    2324    /* dynamic data */ 
     
    3233     * @param laneNum  
    3334     */ 
    34     public LoopDetector(int loopID, String loopLocation) 
     35    public LoopDetector(int loopID, String loopLocationID, String loopLocation) 
    3536    { 
    3637        /* Set static data */ 
    3738        this.loopID = loopID; 
    3839        this.loopLocation = loopLocation; 
    39          
     40        this.loopLocationID = loopLocationID; 
    4041        /* Init dynamic data */ 
    4142        this.vol = 0; 
Note: See TracChangeset for help on using the changeset viewer.