我跟随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()
我运行代码并且没有任何错误,但我也没有看到任何情节。有什么想法吗?
答案 0 :(得分:2)
行pyplot.show = lambda : None
为pyplot.show
分配一个lambda函数。从那时起,当调用pyplot.show()
时,显示情节的通常行为被这个无意义的lambda函数所取代。
删除此行应使您的绘图照常显示。