import arcpy import csv csvfile = open('test.csv', "rb") reader = csv.reader(csvfile) i = 1 for row in reader: text = row.split(",") inraster = text[0] extent = text[1] outraster = text[2] arcpy.Clip_management(inraster, extent, outraster, "", "", "NONE") i += 1
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.