Changeset 422 in tmcsimulator for trunk/src/atmsdriver/trafficeventseditor/TimeFrames.java
- Timestamp:
- 06/23/2019 10:27:35 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/atmsdriver/trafficeventseditor/TimeFrames.java
r240 r422 1 /* 2 * To change this license header, choose License Headers in Project Properties. 3 * To change this template file, choose Tools | Templates 4 * and open the template in the editor. 5 */ 1 6 2 package atmsdriver.trafficeventseditor; 7 3 8 import atmsdriver.model.Highway;9 import atmsdriver.model.Highways;10 import atmsdriver.model.LoopDetector;11 import atmsdriver.model.LoopDetector.DOTCOLOR;12 import atmsdriver.model.Station;4 import tmcsim.highwaymodel.Highway; 5 import tmcsim.highwaymodel.Highways; 6 import tmcsim.highwaymodel.LoopDetector; 7 import tmcsim.highwaymodel.LoopDetector.DOTCOLOR; 8 import tmcsim.highwaymodel.Station; 13 9 import java.util.ArrayList; 14 10 import java.util.List; … … 35 31 { 36 32 frames = new ArrayList<>(); 37 highways = new Highways("./config/vds_data/highways_fullmap.txt", 38 "192.168.251.46", 8080); 33 highways = new Highways("./config/vds_data/postmile_coordinates.txt"); 39 34 } 40 35 … … 194 189 void writeToFEP() 195 190 { 196 try 197 { 198 highways.writeToFEP(); 199 } 200 catch (SimulationException ex) 201 { 202 System.out.println("writeToFEP() failed"); 203 } 191 highways.toJson(); 204 192 } 205 193
Note: See TracChangeset
for help on using the changeset viewer.
