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

ライセンス レベル:BasicStandardAdvanced

サマリ

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

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

使用法

構文

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

入力ライン フィーチャクラスまたはレイヤ。

Feature Layer

コードのサンプル

FlipLine(ライン方向の反転)の例(スタンドアロン スクリプト)

この例では、Python スタンドアロン スクリプトを使用してインプレース編集を行っています。

# Name: Flipline_Example.py
# Description: Flip line features
# Requirements: 

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

環境

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: ×
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
5/10/2014