I need to optimize routes to visit 7,000 points (~700 routes).
Should I calculate a Distance Matrix of size 7000 X 7000 = 49,000,000 options? That means I would receive a Google invoice of ~0.005*49M = $245,000.
I need to optimize routes to visit 7,000 points (~700 routes).
Should I calculate a Distance Matrix of size 7000 X 7000 = 49,000,000 options? That means I would receive a Google invoice of ~0.005*49M = $245,000.
No, you shouldn't do that. Not only because of the monetary cost, but because it's a well-known NP-hard optimisation problem, that of the traveling salesman. You should instead use an optimisation algorithm to find a "good enough" solution, rather than to brute force all the possible routes.