Z 値の計算 (Calculate Z-value) (Geostatistical Analyst)

Geostatistical Analyst のライセンスで利用可能。

サマリー

地球統計レイヤーの内挿モデルを使用して、単一の位置での値を推定します。

使用法

  • このツールは通常、モデルまたはスクリプト作成のみで使用されます。

パラメーター

ラベル説明データ タイプ
入力地球統計レイヤー

解析する地球統計レイヤー。

Geostatistical Layer
入力ポイント

Z 値を計算するポイントの X、Y 座標。

Point

派生した出力

ラベル説明データ タイプ
出力 Z 値

指定した X、Y 座標での推定 Z 値。

Double

arcpy.ga.GACalculateZValue(in_geostat_layer, point_coord)
名前説明データ タイプ
in_geostat_layer

解析する地球統計レイヤー。

Geostatistical Layer
point_coord

Z 値を計算するポイントの X、Y 座標。

Point

派生した出力

名前説明データ タイプ
out_z_value

指定した X、Y 座標での推定 Z 値。

Double

コードのサンプル

GACalculateZValue (Python ウィンドウ)

クリギング地球統計レイヤーを使用して、ある位置での値を推定します。

import arcpy
arcpy.env.workspace = "C:/gapyexamples/data"
outCZV = arcpy.GACalculateZValue_ga("C:/gapyexamples/data/Kriging.lyr", 
                                    "-2000000 -50000")
print(outCZV)
GACalculateZValue (スタンドアロン スクリプト)

クリギング地球統計レイヤーを使用して、ある位置での値を推定します。

# Name: CalculateZValue_Example_02.py
# Description: Uses the interpolation model in a geostatistical 
#              layer to predict a value at a single location.
# Requirements: Geostatistical Analyst Extension

# Import system modules
import arcpy

# Set environment settings
arcpy.env.workspace = "C:/gapyexamples/data"

# Set local variables
inGALayer = "C:/gapyexamples/data/Kriging.lyr"
pointCoord = "-2000000 -50000"

# Execute CalculateZValue
outCZV = arcpy.GACalculateZValue_ga(inGALayer, pointCoord)

# Print results
print(outCZV)

ライセンス情報

  • Basic: 次のものが必要 Geostatistical Analyst
  • Standard: 次のものが必要 Geostatistical Analyst
  • Advanced: 次のものが必要 Geostatistical Analyst

関連トピック