我在下面做了如下图:
使用此代码:
plt.figure(figsize=(8,8))
ax = plt.subplot(111, projection = 'polar')
ax.plot(radians(g_long), distances, 'r.')
ax.set_ylim(0.0, 16.0)
ax.set_theta_offset(-0.5*pi)
ax.grid(True)
我正在努力转移'根据我的变换图,它在当前位于(r,theta)=(0,0)到(r,theta)=(8,0)的中心点。
到目前为止,我还没能找到解决方案,遗憾的是。