2014-01-28 25 views
-1

我正在模擬交通(SUMO)的java應用程序中工作。我從我的應用程序douarouter調用來計算路由。因此(創建一些路線後)我得到這個:Duarouter錯誤

Error: The vehicle type 'Default' occurs at least twice. 

我不知道這是從哪裏來的。我想你可以使用多種車輛的車型。

+2

很難(不可能)在沒有任何代碼的情況下調試代碼。 – csmckelvey

+0

@Takendarkk什麼,你失去了你的水晶球?多麼不負責任! –

回答

0

也許你定義車輛,特別是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> 

你如何定義你的車?

+0

+0

aha,您應該關閉路由和車輛的xml標記,不嵌套它們: (yes,xml is crazy) – claj

+0

It作品謝謝:) –