TL;DR
Train stops of the same name should increase in priority the longer it was since the last train left it to help balance train network resource allocation.What ?
If you have multiple train stations with the same name (say, iron ore mines or oil fields) the trains should prioritise them based not only on distance, but also on time since last train visited the station. The weighted priority could be a product of those two, say: `/(time since last train) / (distance)`. This would ensure all stations get serviced semi-regularly rather than trains always defaulting to the closest station.Why ?
When you have multiple train stations of the same namecurrently from what I can tell the trains always pick the closest station to go to. This is not an ideal solution if the item availability in those stations is limited - trains will tend to drain the same providers over and over, and deliver to the same destinations over and over. For example here:https://imgur.com/a/06yslP5
Iron 1 is closer to my smelters, so it gets visited over and over until it is empty. Iron 2 on the other hand hasn't seen a train in real life days since it is a bit further out. But since both of those stations are running a bit dry on iron ore, you will have a train wait at Iron 1 for an hour getting filled, while Iron 2 has entire chest full of iron ore waiting to be loaded.
Currently the only way to ensure all stations get serviced you need to have precisely (N+M-1) trains on the network, where N is the number of slots in the loading stations, and M is the number of slots in unloading stations. Only then will all the stops get serviced since the trains will always pick the only other available station.
It would be better if all the stops got visited at least once in a while. With correct buffer chests / tanks this would ensure way better load / unload times, and if you go heavily on city block train stations like I did, that you won't have one part of your factory stall because you didn't add that one extra train.
The problem is especially pronounced with oil fields running dry and slowing down their production (you still want to visit all of them, but if you service the same one over and over you will just have trains waiting there doing nothing until full).
With this change you will need fewer trains to service your train network, and rail city block design bases won't stall due to some materials not being delivered to a part of the base due to proximity and insufficient number of trains.