Ubuntu的遥感图像库GDAL使用
程序员文章站
2022-03-20 13:09:38
...
由于为了拼接图像(大于几个G的),简单研究了一下遥感图像库GDAL的python版。
首先是安装,
sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
sudo apt update
sudo apt upgrade
sudo apt install gdal-bin python-gdal python3-gdal
其次是使用教程,参考:http://www.osgeo.cn/python_gdal_utah_tutorial/ch01.html
拼图步骤:
一、创建Driver的Name类型
二、创建一个Driver
三、读取Band
四、写入writeArray数据
五、保留缓存,写入硬盘
六、清理申请的Driver
分割代码:
https://github.com/ClearLee1018/gdal_read_images/blob/master/convertTM2Tiff.py
上一篇: Python 画图的使用技巧
下一篇: gdal安装和使用