Get Model Parameter (Geostatisical Analyst)

Zusammenfassung

Gets model parameter value from an existing geostatistical model source.

Verwendung

Syntax

GAGetModelParameter_ga (in_ga_model_source, model_param_xpath, out_string)
ParameterErläuterungDatentyp
in_ga_model_source

The geostatistical model source to be analyzed.

File; Geostatistical Layer
model_param_xpath

XML path to the required model parameter.

String
out_string

Requested model parameter.

String

Codebeispiel

GetModelParameter example 1 (Python window)

Extract parameter values from a geostatistical model source.

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 example 2 (stand-alone script)

Extract parameter values from a geostatistical model source.

# 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

Umgebungen

Dieses Werkzeug verwendet keine Geoverarbeitungsumgebungen.

Verwandte Themen

Lizenzinformationen

ArcView: Erfordert Geostatistical Analyst
ArcEditor: Erfordert Geostatistical Analyst
ArcInfo: Erfordert Geostatistical Analyst

7/10/2012