Hi, Am 23.12.2015 um 14:43 schrieb Andres Felipe Acosta Gil: > I am using traci.simulation.getArrivedIDList(). It would be great if I > could get the speeds of these vehicles, e.g. their arrival speed. However, > I noticed that once a vehicle arrives to its destination it is not known > for SUMO anymore ... What do you suggest me?
Currently the only way to get this data is parsing the tripinfo output. If you need it online, you can of course try to parse it while it is being written, but file or network caches (when using socket output) may get in your way. Since the vehicle was really deleted from the simulation when it left, there is also no easy way of fixing it in the code. You could also try to work around by using an instant induction loop, near the arrival position if you know that one in advance. Best regards, Michael ------------------------------------------------------------------------------ _______________________________________________ sumo-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sumo-user
