Matplotlib imshow偏移匹配轴?

时间:2012-09-07 19:22:47

标签: python numpy matplotlib gis coordinate-systems

我正在使用matplotlib.pyplot.scatter绘制一堆UTM坐标。我还有一张背景航空照片,我知道这个照片与图的确切程度相符。当我绘制数据并设置轴时,我可以正确显示散射。如果我使用imshow绘制航空照片,则使用像素数作为轴位置。我需要将图像(numpy数组)移动到它正确的UTM位置。有任何想法吗?我对matplotlib和numpy都很新。

例如:我知道图像的左上角(imshow坐标:0,0)具有UTM坐标(269658.4,538318.2)。我如何告诉imshow同样的事情?

我还应该说我调查了Basemap,但它似乎还没有完全支持UTM。我的学习领域非常小。

1 个答案:

答案 0 :(得分:22)

您需要使用extent关键字参数来显示。

作为一个简单的例子:

import numpy as np
import matplotlib.pyplot as plt

# Random points between 50000 and 51000
x, y = 1000 * np.random.random((2, 10)) + 50000

# A 10x10 "image"...
image = np.arange(100).reshape((10,10))

# In a lot of cases, image data will be "flipped" vertically, so you may need 
# use the `origin` kwarg, as well (or just swap the ymin and ymax ordering).
plt.imshow(image, extent=[x.min(), x.max(), y.min(), y.max()])
plt.plot(x, y, 'ro')

plt.show()

enter image description here