1 Star 0 Fork 13

生活plus/python-gdal-test

forked from fungis/python-gdal-test 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
15_掩膜提取.py 848 Bytes
一键复制 编辑 原始数据 按行查看 历史
fungis 提交于 2023-03-16 09:42 . 掩膜提取
# -*- coding: utf-8 -*-
"""
@File : 15_掩膜提取.py
@Author : fungis@163.com
@notice :
"""
import os
from osgeo import gdal
# 单波段图像
raster_path = r'E:\gisData\raster\LC08_L1TP_123037_20200209_20200211_01_T1\LC08_L1TP_123037_20200209_20200211_01_T1_B1.TIF'
output_file_path = r'G:\temp\test.tif'
boundary_shp = r'E:\gisData\polygon\xuchang_polygon.shp'
# 判断文件是否存在
if os.path.exists(raster_path) is False:
raise Exception('[Errno 2] 该文件不存在: \'' + raster_path + '\'')
# clip
gdal.Warp(output_file_path, # 输出栅格
raster_path, # 输入栅格
format='GTiff',
dstSRS='EPSG:4326',
cutlineDSName=boundary_shp, # shp边界
cropToCutline=True, # 按掩膜图层范围裁剪
outputType=gdal.GDT_Float32)
print('----处理完成!----')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/sulumaenjun/python-gdal-test.git
git@gitee.com:sulumaenjun/python-gdal-test.git
sulumaenjun
python-gdal-test
python-gdal-test
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385