ラベル | 説明 | データ タイプ |
入力地球統計レイヤー | 解析する地球統計レイヤー。 | Geostatistical Layer |
入力ポイント | Z 値を計算するポイントの X、Y 座標。 | Point |
派生した出力
ラベル | 説明 | データ タイプ |
出力 Z 値 | 指定した X、Y 座標での推定 Z 値。 | Double |
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 |
クリギング地球統計レイヤーを使用して、ある位置での値を推定します。
import arcpy
arcpy.env.workspace = "C:/gapyexamples/data"
outCZV = arcpy.GACalculateZValue_ga("C:/gapyexamples/data/Kriging.lyr",
"-2000000 -50000")
print(outCZV)
クリギング地球統計レイヤーを使用して、ある位置での値を推定します。
# 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)