Python:如何在网格上插入角度?

时间:2019-04-25 23:17:48

标签: python scipy grid interpolation angle

我有一个包含某些给定数据的网格。该数据由其角度(从0π)给出。 在此网格中,我还有另一个较小的网格。

这可能看起来像这样:

enter image description here

现在,我想在那个网格上插入角度。

我通过使用scipy.interpolate.griddata进行了尝试,效果很好。但是当角度从几乎0变为几乎π时会出现问题(因为中间是π/2 ...)

这是结果,很容易看出问题所在。

enter image description here

我该如何解决这个问题?谢谢! :)

以下是要复制的代码:

import numpy as np
from matplotlib import pyplot as plt
from scipy.interpolate import griddata

ax = plt.subplot()
ax.set_aspect(1)

# Simulate some given data.
x, y = np.meshgrid(np.linspace(-10, 10, 20), np.linspace(-10, 10, 20))
data = np.arctan(y / 10) % np.pi
u = np.cos(data)
v = np.sin(data)

ax.quiver(x, y, u, v, headlength=0.01, headaxislength=0, pivot='middle', units='xy')

# Create a smaller grid within.
x1, y1 = np.meshgrid(np.linspace(-1, 5, 15), np.linspace(-6, 2, 20))
# ax.plot(x1, y1, '.', color='red', markersize=2)

# Interpolate data on grid.
interpolation = griddata((x.flatten(), y.flatten()), data.flatten(), (x1.flatten(), y1.flatten()))
u1 = np.cos(interpolation)
v1 = np.sin(interpolation)
ax.quiver(x1, y1, u1, v1, headlength=0.01, headaxislength=0, pivot='middle', units='xy',
          color='red', scale=3, width=0.03)

plt.show()

编辑:

感谢@bubble,有一种方法可以在插值之前调整给定角度,使结果符合要求。 因此:

  1. 定义整流功能:

    def RectifyData(data):
        for j in range(len(data)):
            step = data[j] - data[j - 1]
            if abs(step) > np.pi / 2:
                data[j] += np.pi * (2 * (step < 0) - 1)
        return data
    
  2. 插值如下:

    interpolation = griddata((x.flatten(), y.flatten()),
                             RectifyData(data.flatten()),
                             (x1.flatten(), y1.flatten()))
    u1 = np.cos(interpolation)
    v1 = np.sin(interpolation)
    

1 个答案:

答案 0 :(得分:1)

我尝试了cos(angle)sin(angle)值的直接插值,但这仍然会导致不连续,从而导致错误的线方向。主要思想在于减少不连续,例如[2.99,3.01, 0.05,0.06]应该转换为以下形式:[2.99, 3.01, pi+0.05, pi+0.06]。这是正确应用2D插值算法所必需的。以下post几乎引起了同样的问题。

def get_rectified_angles(u, v):
    angles = np.arcsin(v)
    inds = u < 0
    angles[inds] *= -1
# Direct approach of removing discontinues 
#     for j in range(len(angles[1:])):  
#         if abs(angles[j] - angles[j - 1]) > np.pi / 2:
#             sel = [abs(angles[j] + np.pi - angles[j - 1]), abs(angles[j] - np.pi - angles[j-1])]
#             if np.argmin(sel) == 0:
#                 angles[j] += np.pi
#             else:
#                 angles[j] -= np.pi
    return angles


ax.quiver(x, y, u, v, headlength=0.01, headaxislength=0, pivot='middle', units='xy')

# # Create a smaller grid within.
x1, y1 = np.meshgrid(np.linspace(-1, 5, 15), np.linspace(-6, 2, 20))

angles = get_rectified_angles(u.flatten(), v.flatten())

interpolation = griddata((x.flatten(), y.flatten()), angles, (x1.flatten(), y1.flatten()))
u1 = np.cos(interpolation)
v1 = np.sin(interpolation)
ax.quiver(x1, y1, u1, v1, headlength=0.01, headaxislength=0, pivot='middle', units='xy',
          color='red', scale=3, width=0.03)

很可能可以使用numpy.unwrap函数来修复停产问题。对于1d数据,numpy.interp具有关键字period用于处理周期性数据。

enter image description here