Changeset 234 in tmcsimulator for trunk/src/atmsdriver/model/Highways.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/Highways.java

    r228 r234  
    283283 
    284284        int loopID = scline.nextInt(); 
    285         String loopLoc = getLoopLoc(line); 
     285        String loopLocID = scline.next(); 
     286        String loopLoc = scline.next(); 
    286287        scline.close(); 
    287         return new LoopDetector(loopID, loopLoc); 
     288        return new LoopDetector(loopID, loopLocID, loopLoc); 
    288289    } 
    289290 
Note: See TracChangeset for help on using the changeset viewer.