如何使用python和rasterio将栅格图像转换为原点为零零?

时间:2020-01-09 17:14:58

标签: python matplotlib gis geotiff rasterio

我正在结合使用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轴上的数字更改为从零开始的每个数字。所以零零零点应该是原点。

0 个答案:

没有答案