我正在关注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()
我运行代码并且没有收到任何错误,但我也没有看到任何图表。有任何想法吗?