支持“重合点”环境的工具可以定义如何在 Geostatistical Analyst 中处理重合数据。
用法说明
- 当所用的工具使用多个数据集并且这些数据集具有重合点时,将对所有数据集应用此环境设置。
对话框语法
- MEAN - 位于重合位置处的数据的平均值。这是默认设置。
- REMOVE_ALL - 从分析中排除所有重合数据。
- MIN - 位于重合位置处的数据的最小值。
- MAX - 位于重合位置处的数据的最大值。
- INCLUDE_ALL - 包括所有数据。
脚本语法
arcpy.env.coincidentPoints = coincidentPoints_option
coincidentPoints_option | 说明 |
---|---|
MEAN | 位于重合位置处的数据的平均值。这是默认设置。 |
REMOVE_ALL | 从分析中排除所有重合数据。 |
MIN | 位于重合位置处的数据的最小值。 |
MAX | 位于重合位置处的数据的最大值。 |
INCLUDE_ALL | 包括所有数据。 |
脚本示例
import arcpy
# Use the minimum value of the data at the coincident location.
arcpy.env.coincidentPoints = "MIN"