用rasterio绘图

时间:2017-06-14 01:33:44

标签: python matplotlib geotiff rasterio

我跟随https://mapbox.github.io/rasterio/topics/plotting.html

的示例

我正在使用此geotiff文件http://download.osgeo.org/geotiff/samples/spot/chicago/SP27GTIF.TIF

这是我的代码:

import rasterio
from matplotlib import pyplot

tif_file = "SP27GTIF.TIF"
src = rasterio.open(tif_file)
pyplot.imshow(src.read(1), cmap='pink')
pyplot.show = lambda : None  # prevents showing during doctests
pyplot.show()

我运行代码并且没有任何错误,但我也没有看到任何情节。有什么想法吗?

1 个答案:

答案 0 :(得分:2)

pyplot.show = lambda : Nonepyplot.show分配一个lambda函数。从那时起,当调用pyplot.show()时,显示情节的通常行为被这个无意义的lambda函数所取代。

删除此行应使您的绘图照常显示。