如何将地理参考图像转换为epsg:4326?

时间:2019-05-06 13:30:20

标签: python gdal geotiff

我正在使用gdal打开要投影到其他投影(即epsg:4326)中的地理参考“ tiff”。

from osgeo import osr, gdal
ds = gdal.Open(myFile)

1 个答案:

答案 0 :(得分:0)

类似的事情会做。目标空间参考系统dstSRS设置为EPSG:4326

from osgeo import gdal

input_raster = gdal.Open(myFile)
output_raster = r"C:\path\to\output\outFile
gdal.Warp(output_raster, input_raster, dstSRS='EPSG:4326')