GA 图层至点 (地统计分析)

许可等级:BasicStandardAdvanced

摘要

将地统计图层导出为点。该工具还可用于预测未测定位置上的值,或验证对测定位置的预测。

用法

语法

GALayerToPoints_ga (in_geostat_layer, in_locations, {z_field}, out_feature_class, {append_all_fields})
参数说明数据类型
in_geostat_layer

要分析的地统计图层。

Geostatistical Layer
in_locations

将执行预测或验证的点位置。

Feature Layer
z_field
(可选)

如果此字段留空,则在相应点位置上进行预测。如果选中此字段,则在点位置上进行预测,并将预测结果与点位置的 Z_value_field 值进行比较,然后执行验证分析。

Field
out_feature_class

包含预测值或预测值和验证结果的输出要素类。

Feature Class
append_all_fields
(可选)

确定是否所有字段都将从输入要素复制到输出要素类。

  • ALL 输入要素的所有字段都将复制到输出要素类。这是默认设置。
  • FID_ONLY 仅复制 FID,并将在输出要素类上将其命名为 Source_ID。
Boolean

代码实例

GALayerToPoints(Python 窗口)

将地统计图层导出为点要素类。

import arcpy
arcpy.env.workspace = "C:/gapyexamples/data"
arcpy.GALayerToPoints_ga("C:/gapyexamples/data/kriging.lyr", 
                         "C:/gapyexamples/data/obs_pts.shp",                   
                         "", "C:/gapyexamples/output/krig_pts")
GALayerToPoints(独立脚本)

将地统计图层导出为点要素类。

# Name: GALayerToPoints_Example_02.py
# Description: Exports a geostatistical layer to points.
# 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"
inPoints = "C:/gapyexamples/data/obs_pts.shp"
zField = ""
outPoints = "C:/gapyexamples/output/krig_pts"

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

# Execute GALayerToPoints
arcpy.GALayerToPoints_ga(inLayer, inPoints, zField, outPoints)

环境

相关主题

许可信息

ArcGIS for Desktop Basic: 需要 Geostatistical Analyst
ArcGIS for Desktop Standard: 需要 Geostatistical Analyst
ArcGIS for Desktop Advanced: 需要 Geostatistical Analyst
5/10/2014