Algorithm to find point of minimum total distance from locations

后端 未结 3 882
予麋鹿
予麋鹿 2020-12-13 15:16

I\'m building an application based around finding a \"convenient meeting point\" given a set of locations.

Currently I\'m defining \"convenient\" as \"minimising the

相关标签:
3条回答
  • 2020-12-13 15:54

    One option is to define an objective (and gradient) function and use a generic optimization library, such as scipy.optimize. fmin_cg would be a good algorithm to try for your problem. Your objective would be the sum of distances as defined in the "Definition" section of the Geometric median Wikipedia page referenced by hatchet. The argument to your objective function is y.

    0 讨论(0)
  • 2020-12-13 16:05

    In a way what you appear to be looking for is the center of mass of a triangle with equal weights at the vertices. That would point to barycentric coordinates.

    When going beyond a triangle there are solutions for generalized barycentric coordinates and you could give priorities to persons by modifying the weight of the vertices. What that still would not account for is distances on a real map (can't just travel straight in any direction) but it may be a start?

    0 讨论(0)
  • 2020-12-13 16:08

    Here is a solution that finds the geographical midpoint and then iteratively explores nearby positions to adjust that towards the minimum total distance point.

    http://www.geomidpoint.com/calculation.html

    This question is also quite similar to

    Minimum Sum of All Travel Times

    Here is a wikipedia article on the general problem you're trying to solve:

    http://en.wikipedia.org/wiki/Geometric_median

    0 讨论(0)
提交回复
热议问题