tif_merge.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import rasterio
  2. from rasterio.merge import merge
  3. import os
  4. inPath = '../../data/tif_crop/'
  5. parent_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), inPath))
  6. tif_files = os.listdir(parent_dir)
  7. # 读取所有 TIF 文件并放入列表
  8. src_files_to_mosaic = []
  9. for tif in tif_files:
  10. src = rasterio.open(parent_dir + '/' + tif)
  11. src_files_to_mosaic.append(src)
  12. # 拼接 TIF 文件
  13. mosaic, out_trans = merge(src_files_to_mosaic)
  14. # 获取拼接后的元数据
  15. out_meta = src_files_to_mosaic[0].meta.copy()
  16. # 更新拼接后文件的元数据
  17. out_meta.update({
  18. "driver": "GTiff",
  19. "count": mosaic.shape[0], # 波段数
  20. "crs": src_files_to_mosaic[0].crs, # 坐标参考系统
  21. "transform": out_trans, # 转换矩阵
  22. "width": mosaic.shape[2], # 拼接后的图像宽度
  23. "height": mosaic.shape[1] # 拼接后的图像高度
  24. })
  25. # 保存拼接后的结果为新文件
  26. outPath = '/home/project/paddlers/data/tif_merge/tif_mosaic.tif'
  27. with rasterio.open(outPath, "w", **out_meta) as dest:
  28. dest.write(mosaic)
  29. # 关闭所有文件
  30. for src in src_files_to_mosaic:
  31. src.close()
  32. print(f"拼接后的文件保存为: {outPath}")