嗨我想知道如何更改tif文件crs,因为我想将一个我的shapefile(称为imd)叠加到tif文件上,如果我不更改坐标,则无法合并它们。
以下是代码:
import rasterio
src = rasterio.open('M:/lab3/man22.tif')
left, bottom, right, top = src.bounds
f, ax = plt.subplots(1, figsize=(6, 6))
ax.imshow(src.read(1), cmap='gray', extent=(left, right, bottom, top))
imd.plot(column='imd_score', cmap='Purples',
linewidth=0.1, alpha=0.75,ax=ax)
man22.tif文件的CRS是:epsg = 3857,而imd.shp是27700.非常感谢你的帮助