Changeset 274 in tmcsimulator for trunk/src/tmcsim/utilities/VehicleDetectionStation.java
- Timestamp:
- 02/25/2019 04:36:04 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/tmcsim/utilities/VehicleDetectionStation.java
r272 r274 8 8 9 9 /** 10 * Represent a single VDS. 10 * Represent a single VDS, "a logical grouping of detectors" at a particular 11 * location in one direction. 11 12 * @author jdalbey 12 13 */ … … 33 34 lineScanner.next(); // skip City 34 35 String raw_pm = lineScanner.next().trim(); 35 if (raw_pm.startsWith("R")) 36 // remove any postmile prefix, if it exists. 37 if (Character.isAlphabetic(raw_pm.charAt(0))) 36 38 { 37 39 raw_pm = raw_pm.substring(1);
Note: See TracChangeset
for help on using the changeset viewer.
