创建地统计图层 (地统计分析)

摘要

创建新的地统计图层。要为新图层填充初始值,需要使用现有的地统计图层或地统计模型。可使用地统计向导 创建此工具的输入数据。

用法

语法

GACreateGeostatisticalLayer_ga (in_ga_model_source, in_datasets, out_layer)
参数说明数据类型
in_ga_model_source

要分析的地统计模型源。

File; Geostatistical Layer
in_datasets
"feature_class field {field}; feature_class field {field}; ..."

以分号分隔的元素字符串。每个元素包含:

  • 数据集的路径或当前内容列表中的图层名称,后跟一空格。
  • 字段列表,各个字段名称由空格分隔,但数据集为栅格时除外。
Geostatistical Value Table
out_layer

由该工具生成的地统计图层。

Geostatistical Layer

代码示例

创建地统计图层 (CreateGeostatisticalLayer) 示例 1(Python 窗口)

使用现有地统计图层创建新的地统计图层。

import arcpy
arcpy.env.workspace = "C:/gapyexamples/data"
arcpy.GACreateGeostatisticalLayer_ga("C:/gapyexamples/data/kriging.lyr",
                            "ca_ozone_pts.shp X=Shape Y=Shape F1=OZONE", "outCGL")
创建地统计图层 (CreateGeostatisticalLayer) 示例 2(独立脚本)

使用现有地统计图层创建新的地统计图层。

# Name: CreateGeostatisticalLayer_Example_02.py
# Description: Uses an existing geostatistical layer to create a new layer,
#   which includes a new feature dataset or variable.
# Requirements: Geostatistical Analyst Extension

# Import system modules
import arcpy

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

# Set local variables
inLayer = "C:/gapyexamples/data/kriging.lyr"
inData = "ca_ozone_pts.shp X=Shape Y=Shape F1=OZONE"
outLayer = "outCGL"

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

# Execute CreateGeostatisticalLayer
arcpy.GACreateGeostatisticalLayer_ga(inLayer, inData, outLayer)

环境

相关主题


7/10/2012