更改状态栏中坐标文本的格式

时间:2016-03-02 14:41:36

标签: python python-2.7 matplotlib

有人知道如何修改情节下方状态栏中的“x”和“y”吗?

我想将其更改为“经度”和“纬度”,是否可以在matplotlib中使用?

enter image description here

1 个答案:

答案 0 :(得分:3)

您可以重新分配Axes的format_coord方法,如以下示例所示(改编自herehere):

import matplotlib.pyplot as plt
import numpy as np

fig,ax = plt.subplots(1)

ax.pcolormesh(np.random.rand(20,20))

def format_coord(x, y):
    return 'Longitude={:6.3f}, Latitude={:6.3f}'.format(x, y)

ax.format_coord = format_coord

plt.show()

或者,在单行中,您可以使用lambda函数:

ax.format_coord = lambda x, y: "Longitude={:6.3f}, Latitude={:6.3f}".format(x,y)

enter image description here