需要 Geostatistical Analyst 许可。
摘要
在地统计图层中使用插值模型预测单个位置的值。
用法
此工具通常只用于模型或脚本中。在 ArcMap 中,识别工具也可以用来计算单个位置的预测值。
语法
GACalculateZValue_ga (in_geostat_layer, point_coord)
参数 | 说明 | 数据类型 |
in_geostat_layer | 要分析的地统计图层。 | Geostatistical Layer |
point_coord | 需要计算 Z 值点的 x,y 坐标。 | Point |
代码示例
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"
# Check out the ArcGIS Geostatistical Analyst extension license
arcpy.CheckOutExtension("GeoStats")
# Execute CalculateZValue
outCZV = arcpy.GACalculateZValue_ga(inGALayer, pointCoord)
# Print results
print outCZV
环境
许可信息
- ArcGIS Desktop Basic: 需要 Geostatistical Analyst
- ArcGIS Desktop Standard: 需要 Geostatistical Analyst
- ArcGIS Desktop Advanced: 需要 Geostatistical Analyst