Changeset 422 in tmcsimulator for trunk/src/atmsdriver/trafficeventseditor
- Timestamp:
- 06/23/2019 10:27:35 AM (7 years ago)
- Location:
- trunk/src/atmsdriver/trafficeventseditor
- Files:
-
- 3 edited
-
TimeFrames.java (modified) (3 diffs)
-
TrafficEventsEditor.java (modified) (1 diff)
-
TrafficLaneEvent.java (modified) (1 diff)
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 -
trunk/src/atmsdriver/trafficeventseditor/TrafficEventsEditor.java
r343 r422 1 1 package atmsdriver.trafficeventseditor; 2 2 3 import atmsdriver.model.Highway;4 import atmsdriver.model.LoopDetector;5 import atmsdriver.model.LoopDetector.DOTCOLOR;6 import atmsdriver.model.Station;3 import tmcsim.highwaymodel.Highway; 4 import tmcsim.highwaymodel.LoopDetector; 5 import tmcsim.highwaymodel.LoopDetector.DOTCOLOR; 6 import tmcsim.highwaymodel.Station; 7 7 import timeselector.*; 8 8 import java.io.File; -
trunk/src/atmsdriver/trafficeventseditor/TrafficLaneEvent.java
r238 r422 1 1 package atmsdriver.trafficeventseditor; 2 2 3 import atmsdriver.model.LoopDetector;4 import atmsdriver.model.LoopDetector.DOTCOLOR;5 import atmsdriver.model.Station;3 import tmcsim.highwaymodel.LoopDetector; 4 import tmcsim.highwaymodel.LoopDetector.DOTCOLOR; 5 import tmcsim.highwaymodel.Station; 6 6 7 7 /**
Note: See TracChangeset
for help on using the changeset viewer.
