获取模型参数 (地统计分析)

摘要

获取现有地统计模型源中的模型参数值。

用法

语法

GAGetModelParameter_ga (in_ga_model_source, model_param_xpath, out_string)
参数说明数据类型
in_ga_model_source

要分析的地统计模型源。

File; Geostatistical Layer
model_param_xpath

所需模型参数的 XML 路径。

String
out_string

请求的模型参数。

String

代码示例

GetModelParameter 示例 1(Python 窗口)

提取地统计模型源中的参数值。

import arcpy
arcpy.env.workspace = "C:/gapyexamples/data"
outParam = arcpy.GAGetModelParameter_ga("C:/gapyexamples/data/kriging.lyr",
                                  "/model[@name = 'Kriging']/model[@name = 'Variogram']/value[@name = 'Nugget']")
print outParam
GetMdelParameter 示例 2(独立脚本)

提取地统计模型源中的参数值。

# Name: GAGetModelParameter_Example_02.py
# Description: Gets model parameter value from an existing geostatistical
#   model source.
# Requirements: Geostatistical Analyst Extension

# Import system modules
import arcpy

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

# Set local variables
modelSource = "C:/gapyexamples/data/kriging.lyr"
xmlPath = "/model[@name = 'Kriging']/model[@name = 'Variogram']/value[@name = 'Nugget']"

# Check out the ArcGIS Geostatistical Analyst extension license
arcpy.CheckOutExtension("GeoStats")

# Execute GAGetModelParameter
outParam = arcpy.GAGetModelParameter_ga(modelSource, xmlPath)

# Show results
print outParam

环境

此工具不使用任何地理处理环境

相关主题


7/10/2012