我正在模擬交通(SUMO)的java應用程序中工作。我從我的應用程序douarouter調用來計算路由。因此(創建一些路線後)我得到這個:Duarouter錯誤
Error: The vehicle type 'Default' occurs at least twice.
我不知道這是從哪裏來的。我想你可以使用多種車輛的車型。
我正在模擬交通(SUMO)的java應用程序中工作。我從我的應用程序douarouter調用來計算路由。因此(創建一些路線後)我得到這個:Duarouter錯誤
Error: The vehicle type 'Default' occurs at least twice.
我不知道這是從哪裏來的。我想你可以使用多種車輛的車型。
也許你定義車輛,特別是vType兩次?
從Sumo at a glance一個例子:
<routes>
<vType id="type1" accel="0.8" decel="4.5" sigma="0.5" length="5" maxSpeed="70"/>
<route id="route0" color="1,1,0" edges="beg middle end rend"/>
<vehicle id="0" type="type1" route="route0" depart="0" color="1,0,0"/>
<vehicle id="1" type="type1" route="route0" depart="0" color="0,1,0"/>
</routes>
你如何定義你的車?
很難(不可能)在沒有任何代碼的情況下調試代碼。 – csmckelvey
@Takendarkk什麼,你失去了你的水晶球?多麼不負責任! –