描述
在沿线或面轮廓且由线的方向变化而生成的角度小于或等于指定的最大角度的顶点处放置控制点。
插图
使用方法
无法向 shapefile 添加控制点。
警告:
此工具会修改输入数据。有关详细信息以及避免数据被意外更改的策略,请参阅不创建输出数据集的工具。
语法
SetControlPointByAngle(in_features, maximum_angle)
参数 | 说明 | 数据类型 |
in_features | 包含线或面要素的要素图层。 | Feature Layer |
maximum_angle | 此角度用于确定是否将沿线或面轮廓的顶点设置为控制点。角度值必须大于零且小于 180 十进制度。 | Double |
派生输出
名称 | 说明 | 数据类型 |
out_representations | 更新后的输入要素。 | 要素图层 |
代码示例
以下 Python 窗口脚本演示了如何在即时模式下使用 SetControlPointByAngle 工具。
import arcpy
arcpy.env.workspace = "C:\data"
arcpy.SetControlPointByAngle_cartography("trails.lyrx", "135")
此独立脚本显示的是使用 SetControlPointByAngle 工具的示例。
# Name: SetControlPointByAngle_standalone_script.py
# Description: Places a control point at vertices along a line or polygon
# outline where the angle created by a change in line direction is
# less than or equal to a specified maximum angle
# Import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = "C:/data"
# Set local variables
in_layer = "trails.lyrx"
minimum_angle_deviation = "135"
# Execute Set Representation Control Point At Intersect
arcpy.SetControlPointByAngle_cartography(in_layer, minimum_angle_deviation)
环境
许可信息
- Basic: 否
- Standard: 否
- Advanced: 是