再議使用Python批量裁切柵格

來源:互聯網
上載者:User

標籤:

曾經寫過《使用Python指令碼批量裁切柵格》,但今天又遇到這個情況則發現了問題。我們遇到的實際問題往往是有一個需要裁剪的影像(大塊的),另外有一個向量面,現在需要按向量面每一個要素進行裁剪,無奈arcgis裡的工具無法方便地做到。只能自己寫工具,這次使用了clip而不是ExtractByMask,因為ExtractByMask有很多限制!

下面是工具的操作樣本:按每一個要素進行裁剪柵格,輸出柵格以選擇的欄位命名,前提是欄位的每個值是唯一的。

下面是訊息輸入和裁剪向量表的屬性工作表:

下面是Python原始碼

# ---------------------------------------------------------------------------# Purpose : ClipRasterByFeature# Author :gisweis# Date :2015.7.21# Version : ArcGIS 10.1# Email :[email protected]# Notes :# --------------------------------------------------------------------------- import sysreload(sys)sys.setdefaultencoding( "utf-8" ) import arcpyimport string try:raster = arcpy.GetParameterAsText(0) #clip rasterclip_feat = arcpy.GetParameterAsText(1) #clip featureclassfield = arcpy.GetParameterAsText(2) #name fieldoutworkspace = arcpy.GetParameterAsText(3) #output wsouttype = arcpy.GetParameterAsText(4) #output ws total = int(arcpy.GetCount_management(clip_feat).getOutput(0))count= 1for 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+1except arcpy.ExecuteError:    print arcpy.GetMessages()

  

 

再議使用Python批量裁切柵格

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.