I am looking to model a vehicle routing problem with time windows on OctaPy. Specifically, this problem involves traffic enforcement on public roads, so parking wardens need to survey carparks and road segments and visit them more than once during a 24-hour period.
I refer to the answer in the following question as foundation to develop my problem: Is it possible to create a VRP solution using NetworkX?
I have a few questions regarding the modelling:
- How does OctaPy model time-dependency, that is a different edge weight representing travel duration depending on the time of day?
- How do I model the demand points if each point needs to be visited X times?
- If a demand point is to be visited X times, how can I enforce a time window gap such that the duration between visits is at least a fixed duration (e.g. 1 hour)?