I encountered the same problem before. It is because the vehicles in SUMO must always have a route to follow. Otherwise, they will subscribe to the arrived vehicle list after reaching the dest specified in setStop() and disappear. Hint: use traci.vehicle.isStopped(vehID) to judge whether the vehicle has stopped, update the route as long as isStopped returns True.
Best regards, Li -----Original Message----- From: Green Mind [mailto:[email protected]] Sent: Monday, January 09, 2017 3:21 PM To: SUMO Users Subject: [sumo-user] Warning: Vehicle '53' skips stop on lane '25301895_0' time=471.00 I use traci to set a route to a vehicle (the route contains about 5 edge), and then make it stop on the middle of the last edge: * traci.vehicle.setRoute(vehicle_id, edges)* * # stop in the middle of the street* * loc = graph.getEdge(dest).getLength() / 2.0* * traci.vehicle.setStop(vehicle_id, dest, pos=loc) * After doing this successfully about 100 times with different vehicles and different routes, I get this error: *Warning: Vehicle '53' skips stop on lane '25301895_0' time=471.00* And the vehicle dissapears from the map. This reproduces all the time with this specific vehicle and route. I will add that this is a part of a script that controls many vehicles and sends them in many different routes - the only problem seem to be with this specific vehicle and this specific route+stop combination, but I have no idea what could cause it. Everything looks normal. Any ideas? ---------------------------------------------------------------------------- -- Developer Access Program for Intel Xeon Phi Processors Access to Intel Xeon Phi processor-based developer platforms. With one year of Intel Parallel Studio XE. Training and support from Colfax. Order your platform today. http://sdm.link/xeonphi _______________________________________________ sumo-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sumo-user ------------------------------------------------------------------------------ Developer Access Program for Intel Xeon Phi Processors Access to Intel Xeon Phi processor-based developer platforms. With one year of Intel Parallel Studio XE. Training and support from Colfax. Order your platform today. http://sdm.link/xeonphi _______________________________________________ sumo-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sumo-user
