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

时间:2012-07-30 10:02:34

标签: 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 on...]

我想编写一个函数interpolateValueAtCoordinate(x, y),它可以很好地插入特定坐标处的值。

我该怎么办?

1 个答案:

答案 0 :(得分:2)

如果您有SciPy,请查看interp2D