gpt4 book ai didi

python - 从 GPS 坐标创建路径(样条)

转载 作者:行者123 更新时间:2023-11-28 17:46:11 25 4
gpt4 key购买 nike

我正在尝试根据输入的经纬度 GPS 坐标创建一条连续路径。是否有一个 python 库可以做到这一点?最终目标是进行优化,因此我需要连续可微的路径来确定梯度。

我一直在使用 GDAL,但它似乎没有我需要的所有功能。

最佳答案

这需要 scipy.interpolate 包。本页 Interpolation in the SciPY Cookbook展示了如何使用函数 splprep 来确定样条节点,以及如何使用 splev 在平面上的噪声数据上绘制结果曲线。

食谱示例(略有缩短):

from numpy import arange, cos, linspace, pi, sin, random
from scipy.interpolate import splprep, splev

# make ascending spiral in 3-space
t=linspace(0,1.75*2*pi,100)

x = sin(t)
y = cos(t)
z = t

# add noise
x+= random.normal(scale=0.1, size=x.shape)
y+= random.normal(scale=0.1, size=y.shape)
z+= random.normal(scale=0.1, size=z.shape)

# spline parameters
s=3.0 # smoothness parameter
k=2 # spline order
nest=-1 # estimate of number of knots needed (-1 = maximal)

# find the knot points
tckp,u = splprep([x,y,z],s=s,k=k,nest=-1)

# evaluate spline, including interpolated points
xnew,ynew,znew = splev(linspace(0,1,400),tckp)

import pylab
pylab.subplot(1,1,1)
data,=pylab.plot(x,y,'bo-',label='data')
fit,=pylab.plot(xnew,ynew,'r-',label='fit')
pylab.legend()

关于python - 从 GPS 坐标创建路径(样条),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17776417/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com