I want to create bus stops (or train stops). How can I do this in flow?
SUMO has this Option: https://sumo.dlr.de/wiki/Simulation/Public_Transport, but routes do not seem to have this option (in Flow).
I tried adding them nevertheless to the routes. I read some scenarios, but none of them use stops (or anything besides regular routes) ...trying to add bus stops to the source code now, but I hope there is a better solution
def specify_routes(self, net_params):
rts = {
"a": ["a"],
"b": ["b"],
"fix_route": ["a"]
# This does not work, obviously
#,"stop": ["lane": "a", "endPos": 50, "duration": 20]
}
return rts