摘要
将控制点和现有控制点表结合在一起。
用法
如果既设置了 Z 值字段名称参数,又设置了输入 DEM 参数,那么 Z 值字段的优先级更高。如果既没设置 Z 值字段名称参数,又没设置输入 DEM 参数,那么所有地面控制点和检测点的 Z 值都将被设置为 0。
语法
AppendControlPoints_management (in_master_control_points, in_input_control_points, {in_z_field}, {in_tag_field}, {in_dem})
参数 | 说明 | 数据类型 |
in_master_control_points | 输入控制点表。这通常是计算连接点工具的输出。 | Feature Class; Feature Layer |
in_input_control_points | Feature Class; Feature Layer | |
in_z_field (可选) | 该字段存储控制点 Z 值。 如果既设置了 Z 值字段名称参数,又设置了输入 DEM 参数,那么将使用 Z 值字段。如果既没设置 Z 值字段名称参数,又没设置输入 DEM 参数,那么所有地面控制点和检测点的 Z 值都将被设置为 0。 | Field |
in_tag_field (可选) | 输入控制点表中的字段值是唯一的。该字段将被添加到目标控制点表中,标签字段可用于引入与地面控制点相关联的标识符。 | Field |
in_dem (可选) | DEM 用于获取输入控制点表中控制点的 Z 值。 如果既设置了 Z 值字段名称参数,又设置了输入 DEM 参数,那么将使用 Z 值字段。如果既没设置 Z 值字段名称参数,又没设置输入 DEM 参数,那么所有地面控制点和检测点的 Z 值都将被设置为 0。 | Mosaic Dataset; Mosaic Layer; Raster Dataset; Raster Layer |
代码实例
AppendControlPoints 示例 1(Python 窗口)
这是 AppendControlPoints 工具的 Python 示例。
import arcpy
arcpy.AppendControlPoints_management(
"c:/BD/BD.gdb/tiePts", "c:/BD/BD.gdb/controlPts",
"", "c:/BD/BD.gdb/dem")
AppendControlPoints 示例 2(独立脚本)
这是 AppendControlPoints 工具的 Python 脚本示例。
#append control points
import arcpy
arcpy.env.workspace = "c:/workspace"
#append the control points and tie points
target = "BD.gdb/tiePoints"
in_controlPoints = "BD.gdb/controlPoints"
dem = "BD.gdb/dem"
arcpy.AppendControlPoints_management(target, in_controlPoints, "", dem)