Python 当我想在不规则的值网格中为坐标找到一个好的插值时,我有什么选择?

Python 当我想在不规则的值网格中为坐标找到一个好的插值时,我有什么选择?,python,spatial-interpolation,Python,Spatial Interpolation,我有一个列表点及其值,覆盖的区域如下: #x, y, value list = [ (1.123, 1.232, 15), (1.121, 2.323, 12), (1.124, 3.451, 17), (1.120, 4.593, 06), (1.121, 5.638, 09), (2.123, 1.232, 19), (2.121, 2.323, 72), (2.124, 3.451, 13), (2.120, 4.593, 99), (2.121, 5.638, 04), and so

我有一个列表点及其值,覆盖的区域如下:

#x, y, value
list  = [
(1.123, 1.232, 15),
(1.121, 2.323, 12),
(1.124, 3.451, 17),
(1.120, 4.593, 06),
(1.121, 5.638, 09),
(2.123, 1.232, 19),
(2.121, 2.323, 72),
(2.124, 3.451, 13),
(2.120, 4.593, 99),
(2.121, 5.638, 04), and so on...]
我想写一个函数
interpolateValueAtCoordinate(x,y)
,它可以很好地插值特定坐标处的值


我能做什么?

如果你有可用的SciPy,请看

这个SciPy部分是否给出了一些想法:?不要重新发明轮子。正如其他人提到的,检查Scipy以获得现有的插值解决方案。不幸的是,上面提到的网页上的示例是否适用于您的安装?