作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
找到坐标集的最佳方法是什么,例如
给定指定宽度,大约 5,00,位于点路径内。
例如,一架飞机跟随几个航路点。
是否有一种好方法也可以按照与路线相同的顺序对它们进行排序。
计算速度比准确性更重要,因为我在看
制作建议 list 。
从我所看到的,我认为这并不简单,问题是
有点宽泛,但欢迎任何建议/指示,例如:
最佳答案
您可以进行许多优化:
// delphi code that would iterate through a set of points to find the index
// of the point that is the closest to the provided x/y
function TMatcher.GetIndexOfClosest(X,Y:Double):Integer;
var
i : Integer;
Closest:Double;
Distance:Double;
begin
Closest:= MaxInt;
Result := -1;
for i:=0 to high(Points) do
begin
// taking the square root is not needed here!
Distance :=Sqr(X-Points[I].X)+Sqr(Y-Points[I].Y);
if Distance < Closest then
begin
Closest := Distance;
Result := i;
end;
end;
end;
关于geometry - 如何最好地在一组纬度/经度坐标上执行走廊范围搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/445109/
我是一名优秀的程序员,十分优秀!