Coincident Points(環境設定)

Coincident Points の環境を反映するツールは、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"

関連項目


7/10/2012