Welcome to the Travel Planner web service!
Here you will be able to:
- Generate a random route
Possible parameters:
-
min_steps_straight (int > 0; default = 1) - sets the number of minimum steps on a particular direction
-
max_steps_straight (int >= min_steps_straight; default = min_steps_straight + 4)
-
max_number_stops (int in (3, 20); default = 5)
e.g.: https://rse-with-python.arc.ucl.ac.uk/travel-planner/route/?min_steps_straight=2&max_steps_straight=10&max_number_stops=10
- Generate a list of random n passengers.
Possible parameters:
-
min_passengers (int > 0; default = 3) - sets the number of minimum steps on a particular direction
-
max_passengers (int >= min_passengers; default = 10)
e.g.: https://rse-with-python.arc.ucl.ac.uk/travel-planner/passengers/?min_passengers=2&max_passengers=20