翻转线 (编辑)
摘要
颠倒线要素的“自-至”方向。
可通过使用箭头符号化线要素来查看线要素的方向。
用法
-
与方向相关的属性(如地址范围)不进行翻转,而仅翻转几何。例如,某个线要素的 LF-ADD 属性(“左起地址”)为 100,而 LT-ADD 属性(“左至地址”)为 198。翻转线时,这些值不会发生更改。
警告:
此工具用于修改输入数据。有关详细信息以及避免数据被意外更改的策略,请参阅无输出的工具。
语法
FlipLine_edit (in_features)
参数 | 说明 | 数据类型 |
in_features |
输入要素类或图层。该输入必须为折线 (Polyline)。 | Feature Layer |
代码示例
FlipLine 示例(独立脚本)
此示例显示的是如何使用 Python 独立脚本进行“原位”编辑。
# Name: Flipline_Example.py # Description: Flip line features # Requirements: # Author: ESRI import arcpy from arcpy import env env.workspace="C:/data" inFeatures="harvestable.shp" try: arcpy.FlipLine_edit(inFeatures) except Exception, e: # If an error occurred, print line number and error message import traceback, sys tb = sys.exc_info()[2] print "Line %i" % tb.tb_lineno print e.message
FlipLine 示例(Python 交互式窗口)
在 Python 交互式窗口中显示了如何使用 Python 命令翻转线。
import arcpy from arcpy import env env.workspace="C:/data" arcpy.FlipLine_edit("harvestable.shp")
环境
相关主题
7/10/2012