|
From: Omair M. A. <oma...@gm...> - 2010-08-11 15:32:51
|
Hi,
As a part of trying to modify SUMO for different traffic conditions, I
was trying to change which side (right or left)
of the road cars travel on. I want to change it to how vehicles travel in
countries like UK and India.
I found only one reference to this in the code:
(in MSEdge.h)
/// @brief Container for the edge's lane; should be sorted:
(right-hand-traffic) the more left the lane, the higher the container-index
std::vector<MSLane*>* myLanes;
Is it possible that simply changing the sorting from ascending to descending
will do what I want?
|