资源简介
利用python创建批量裁剪栅格工具,实现栅格数据批量裁剪
代码片段和文件信息
# Purpose : ClipRasterByFeature
import sys
reload(sys)
sys.setdefaultencoding( “utf-8“ )
import arcpy
import string
try:
in_raster = arcpy.GetParameterAsText(0)
clip_feature = arcpy.GetParameterAsText(1)
field = arcpy.GetParameterAsText(2)
outpath = arcpy.GetParameterAsText(3)
outputtype = arcpy.GetParameterAsText(4)
result = arcpy.GetCount_management(clip_feature)
total = int(result.getOutput(0))
count= 1
for row in arcpy.SearchCursor(clip_feature):
mask=row.getValue(“shape“)
extent=str(mask.extent.XMin)+“ “ +str(mask.extent.YMin)+“ “ +str(mask.extent.XMax)+“ “ +str(mask.extent.YMax)
out_raster=outpath+“\\“+str(str(row.getValue(field))+outputtype)
arcpy.AddMessage(“chipping: “ + str(row.getValue(field)) + “...count:“+str(total)+“\\“+str(count))
arcpy.Clip_management(in_rasterextentout_rastermask“0““ClippingGeometry“)
count=count+1
except arcpy.ExecuteError:
print arcpy.GetMessages()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1092 2017-11-24 11:58 批量裁剪栅格\批量裁剪栅格.py
文件 8704 2017-11-24 13:40 批量裁剪栅格\批量裁剪栅格.tbx
目录 0 2017-11-24 13:39 批量裁剪栅格\
相关资源
- 利用Python创建ArcGis批量输出地图影工
- 利用Python创建ArcGis裁剪工具
- PSO算法Python实现自定义函数
- Python的Nmap模块
- 教务管理系统
- python实现Apriori算法apriori.py和数据
- opc python 读取代码
- Python+Flask+sqlite实现的选课系统
- wxpython使用matplotlib的简单教程
- geoserver-rest-python-1.1
- leetcode python题解
- 基于SVM的手写字体识别Python版本
- Python RWR 可重启随机游走代码
- Python→Transorflow猫狗识别完整代码,附
- RPi.GPIO-0.6.3.tar
- python+rabird.winio实现驱动级模拟按键
- 基于wxPython和PySerial实现的串口助手
- Python Keras库 安装包
- python实现网络爬虫 爬取北上广深的天
- 正确可用的基于python实现的贝塞尔曲
- python3抓取头条新闻源码
- python.txt
- python版本selenium webdriver api
- _bz2.cpython-37m-x86_64-linux-gnu.so
- 树莓派与PC端在局域网内运用python实现
- Violent-Python-Source.zip
- python将矩形jpg图形批量裁剪为圆形图
- 彼岸网4K高清图片爬虫源代码
- gmpy2-2.0.8-cp38-cp38-win_amd64.whl
- 天天酷跑Python.docx
评论
共有 条评论