分享

使用Python批量裁切栅格

 昵称QAb6ICvc 2017-04-24


曾经写过《使用Python脚本批量裁切栅格》,但今天又遇到这个情况则发现了问题。我们遇到的实际问题往往是有一个需要裁剪的影像(大块的),另外有一个矢量面,现在需要按矢量面每一个要素进行裁剪,无奈arcgis里的工具无法方便地做到。只能自己写工具,这次使用了clip而不是ExtractByMask,因为ExtractByMask有很多限制!

下面是工具的操作示例:按每一个要素进行裁剪栅格,输出栅格以选择的字段命名,前提是字段的每个值是唯一的。

其中,输出类型这个combox设置方法是:

下面是消息输入和裁剪矢量表的属性表:

下面是Python源代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# ---------------------------------------------------------------------------
 
# Purpose : ClipRasterByFeature
 
# Author :gisweis
 
# Date :2015.7.21
 
# Version : ArcGIS 10.1
 
# Email :liweis2014@hotmail.com
 
# Notes :
 
# ---------------------------------------------------------------------------
 
  
 
import sys
 
reload(sys)
 
sys.setdefaultencoding( "utf-8" )
 
  
 
import arcpy
 
import string
 
  
 
try:
 
raster = arcpy.GetParameterAsText(0) #clip raster
 
clip_feat = arcpy.GetParameterAsText(1) #clip featureclass
 
field = arcpy.GetParameterAsText(2) #name field
 
outworkspace = arcpy.GetParameterAsText(3) #output ws
 
outtype = arcpy.GetParameterAsText(4) #output ws
 
  
 
total = int(arcpy.GetCount_management(clip_feat).getOutput(0))
 
count= 1
 
for row in arcpy.SearchCursor(clip_feat):
 
mask=row.getValue("Shape")
 
extent=str(mask.extent.XMin)+" " +str(mask.extent.YMin)+" " +str(mask.extent.XMax)+" " +str(mask.extent.YMax)
 
outPath=outworkspace+"\\"+str(row.getValue(field)+outtype)
 
arcpy.AddMessage("chipping: " + str(row.getValue(field)) + "...count:"+str(total)+"\\"+str(count))
 
arcpy.Clip_management(raster,extent,outPath,mask,"0","ClippingGeometry")
 
count=count+1
 
except arcpy.ExecuteError:
 
    print arcpy.GetMessages()

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多