摘要
在沿线或面轮廓且由线的方向变化而生成的角度小于或等于指定的最大角度的顶点处放置制图表达控制点。
插图
用法
输入要素必须是使用制图表达进行符号化的线或面图层。
对折点的修改被存储为要素制图表达上的几何覆盖。
语法
SetRepresentationControlPointByAngle_cartography (in_features, maximum_angle)
参数 | 说明 | 数据类型 |
in_features | 包含线或面制图表达的输入要素图层。 | Layer |
maximum_angle | 此角度用于确定是否将沿线或面轮廓的顶点设置为制图表达控制点。角度值必须大于零且小于 180 十进制度。 | Double |
代码实例
设置制图表达控制点 (SetRepresentationControlPointByAngle) 工具示例(Python 窗口)
以下 Python 窗口脚本演示了如何在即时模式下使用设置制图表达控制点 (SetRepresentationControlPointByAngle) 工具。
import arcpy
from arcpy import env
env.workspace = "C:\data"
arcpy.SetRepresentationControlPointByAngle_cartography("trails.lyr", "135")
设置制图表达控制点 (SetRepresentationControlPointByAngle) 工具示例(独立 Python 脚本)
此独立脚本显示了如何使用设置制图表达控制点 (SetRepresentationControlPointByAngle) 工具。
# Name: SetRepresentationControlPointByAngle_standalone_script.py
# Description: adds representation control points at locations where a feature has a sharp angle in its geometry
# Author: ESRI
# Import system modules
import arcpy
from arcpy import env
# Set environment settings
env.workspace = "C:/data"
# Set local variables
in_representations = "trails.lyr"
minimum_angle_deviation = "135"
# Execute Set Representation Control Point At Intersect
arcpy.SetRepresentationControlPointAtIntersect_cartography(in_representations, minimum_angle_deviation)
环境
此工具不使用任何地理处理环境
许可信息
- ArcGIS for Desktop Basic: 否
- ArcGIS for Desktop Standard: 否
- ArcGIS for Desktop Advanced: 是