ライン方向の反転(Flip Line) (編集)

サマリ

ライン フィーチャの「始点-終点」方向を逆にします。

ライン フィーチャを矢印で表すことによって、ライン フィーチャの向きを確認できます。

使用法

構文

FlipLine_edit (in_features)
パラメータ説明データ タイプ
in_features

入力フィーチャクラスまたはレイヤ。これはポリラインでなければなりません。

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")

環境

関連項目

ライセンス情報

ArcView: いいえ
ArcEditor: はい
ArcInfo: はい

7/10/2012