Multi-destination route

We can only plot to 1 destination. Shouldn't we be able to target multiple stars and make a route in the galaxy map with it? Now, the route I would like to take requires more than 20k, the max distance for fastest routes.

From Shinrarta, to the neutron field, to sagittarius, to colonia, to the beagle point, then to another random star in ththe galaxy that I wanted to visit.

What I'm suggesting is to put all of those places in one route. Obviously not the route i said, but one with the limit of 20k ly.
 
Look up the traveling salesman problem, computers, to determine the best route, would check every single possible route between all the of the selected locations. There are commonly used algorithms to speed up the process that result in less than ideal pathing to each location but this sort of problem is an exceedingly complex and heavily studied real world issue. Personally I am surprised that we can plot as far as we can in the time it takes, put multiple destination in and it becomes a big issue.

Now there are ways to simplify it by using the human brain, simply by having the player select the order in which to visit each location, and that will help with long trips where the to be visted locations are in an easily discernable order of some sort, so basically plotting to each location as if it were a seperate route plot, but just throwing star names in and expecting the computer to plot the route won't work, it has no way to determine which is the further site without actually working it out first, so there would still be a fair amount of manual work in plotting a multiple location route. This becomes an issue where players are using it to try and plot a many node trade route with the shortest possible travel time and distance.

When I did a bit of trading it did seem to me it would be an advantage to plot a circular route where the end station and the beginning station were the same so you could maximise profits, but as an explorer now I sidestep my plotted route so often and manually need to plot so much that it would be a big advantage. This sort of thing would be much more useful to traders I think.
 
Look up the traveling salesman problem, computers, to determine the best route, would check every single possible route between all the of the selected locations. There are commonly used algorithms to speed up the process that result in less than ideal pathing to each location but this sort of problem is an exceedingly complex and heavily studied real world issue. Personally I am surprised that we can plot as far as we can in the time it takes, put multiple destination in and it becomes a big issue.

Now there are ways to simplify it by using the human brain, simply by having the player select the order in which to visit each location, and that will help with long trips where the to be visted locations are in an easily discernable order of some sort, so basically plotting to each location as if it were a seperate route plot, but just throwing star names in and expecting the computer to plot the route won't work, it has no way to determine which is the further site without actually working it out first, so there would still be a fair amount of manual work in plotting a multiple location route. This becomes an issue where players are using it to try and plot a many node trade route with the shortest possible travel time and distance.

When I did a bit of trading it did seem to me it would be an advantage to plot a circular route where the end station and the beginning station were the same so you could maximise profits, but as an explorer now I sidestep my plotted route so often and manually need to plot so much that it would be a big advantage. This sort of thing would be much more useful to traders I think.

I have programmed myself a small script (in php and another in python) to find from ~200 waypoints the "best" / optimized (the shortest distance overall) route with. I used the A * algorithm for that and edsm-API to fetch my flight-log with system-coordinates. but of course this feature would be even better in the game.
 
Last edited:
Back
Top Bottom