• 大小: 965B
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-05-12
  • 语言: Python
  • 标签: Python  批处理  arcgis  

资源简介

本程序基于arcpy编写的Idw批处理程序,程序中具体的参数设置需根据需要自行设置

资源截图

代码片段和文件信息

# -*- coding: cp936 -*-
import arcpy
from arcpy import env
from arcpy.sa import *

arcpy.env.workspace=“C:/Users/dqjcs/Desktop/TM“
# Set the extent environment using a keyword.
arcpy.env.extent = “MAXOF“
# Set the extent environment using the Extent class.
arcpy.env.extent = arcpy.Extent(109.00974830.489242109.765348 31.374482)
# Set the extent environment using a space-delimited string.
arcpy.env.extent = “109.009748 30.489242 109.765348 31.374482“
fcs=arcpy.Lis

评论

共有 条评论