描述
将控制点和现有控制点表结合在一起。
使用
如果既设置了 Z 值字段名称参数,又设置了输入 DEM 参数,那么 Z 值字段名称的优先级更高。如果既没设置 Z 值字段名称参数,又没设置输入 DEM 参数,那么所有地面控制点 (GCP) 和检测点的 Z 值都将被设置为 0。
语法
AppendControlPoints(in_master_control_points, in_input_control_points, {in_z_field}, {in_tag_field}, {in_dem}, {in_xy_accuracy}, {in_z_accuracy}, {Geoid})
参数 | 说明 | 数据类型 |
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 |
in_xy_accuracy (可选) | X 和 Y 坐标的输入精度。精度单位与 in_input_control_points 的单位相同。 此信息应由数据提供商提供。如果精度信息不可用,请跳过此可选参数。 | Double |
in_z_accuracy (可选) | 垂直坐标的输入精度。精度单位与 in_input_control_points 的单位相同。 此信息应由数据提供商提供。如果精度信息不可用,请跳过此可选参数。 | Double |
Geoid (可选) | 参考椭球体高的有理多项式系数 (RPC) 需要进行大地水准面校正。大多数高程数据集均参考海平面正高,因此在这些情况下,需要进行此项校正以将海平面正高转换为椭球体高。
| Boolean |
派生输出
名称 | 说明 | 数据类型 |
out_master_control_points | 已更新的控制点。 | 要素类;要素图层 |
代码示例
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)
环境
此工具不使用任何地理处理环境。
许可信息
- Basic: 否
- Standard: 是
- Advanced: 是