Gdal 所能读写的格式
在使用python的gdal包的时候,在读写的时候,一般使用tif的方式读写,即
driver = gdal.GetDriverByName("GTiff")
然而很多人,例如我,却忽略了Gdal包还支持大量的其他格式的地理栅格数据,如 ".img"格式的,其是Erdas软件常用的一种地理数据储存方式,以下是我对所有支持个格式进行的整理,用作笔记。
参考链接
GDAL官方网站
https://gdal.org/drivers/raster/index.html
GDAL python API
https://gdal.org/python/index.html
GDAL cookbook 网站,提供了众多案例
https://pcjericks.github.io/py-gdalogr-cookbook/
这个是一个让你想要将tif转二进制EVI格式的案例
https://stackoverflow.com/questions/42834303/conversion-of-numpy-2d-array-to-envi-binary-file-through-gdal