我正在结合使用matplotlib软件包rasterio来显示栅格图像(即地图,geoTiffs)。这是一些代码:
import rasterio
fig = plt.figure(figsize=(8, 8))
ax = plt.subplot(111, aspect='equal')
with rio.open(raster_img_path) as src:
rio.plot.show(src, ax=ax)
plt.show()
如何将x和y轴上的数字更改为从零开始的每个数字。所以零零零点应该是原点。