Changeset 278 in tmcsimulator for trunk/src/atmsdriver/model
- Timestamp:
- 02/26/2019 09:11:08 AM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/atmsdriver/model/Station.java (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/atmsdriver/model/Station.java
r274 r278 187 187 for (LoopDetector loop : loops) 188 188 { 189 if (loop.loopLocation.startsWith(laneDir)) 190 { 189 // THIS DECISION ISN'T NEEDED after JD's BuildHighwayFile pgm 190 // creates a highway map based on VDS instead of Controller (LDS). 191 // if (loop.loopLocation.startsWith(laneDir)) 192 // { 191 193 // UPDATE LOOP WITH VALUES 192 194 loop.updateLoop(dotColor.volume(), dotColor.occupancy()); 193 }195 // } 194 196 } 195 197 … … 222 224 for (LoopDetector loop : loops) 223 225 { 224 if (loop.loopLocation.substring(0,2).equals(laneDir)) 225 { 226 // THIS DECISION ISN'T NEEDED after JD's BuildHighwayFile pgm 227 // creates a highway map based on VDS instead of Controller (LDS). 228 // if (loop.loopLocation.substring(0,2).equals(laneDir)) 229 // { 226 230 // Return color according to loop volume of first matching lane 227 231 if (loop.vol == 1) … … 237 241 return '-'; 238 242 } 239 }243 // } 240 244 } 241 245 // Default case for when the route is not on this direction
Note: See TracChangeset
for help on using the changeset viewer.
