重合点(环境设置)

支持“重合点”环境的工具可以定义如何在 Geostatistical Analyst 中处理重合数据。

了解有关如何在 Geostatistical Analyst 中处理重合数据的详细信息

用法说明

对话框语法

脚本语法

arcpy.env.coincidentPoints = coincidentPoints_option

coincidentPoints_option

说明

MEAN

位于重合位置处的数据的平均值。这是默认设置。

REMOVE_ALL

从分析中排除所有重合数据。

MIN

位于重合位置处的数据的最小值。

MAX

位于重合位置处的数据的最大值。

INCLUDE_ALL

包括所有数据。

coincidentPoints 语法

脚本示例

import arcpy

# Use the minimum value of the data at the coincident location.
arcpy.env.coincidentPoints = "MIN"

相关主题

9/15/2013