フィーチャの頂点でラインを分割 (Split Line At Vertices) (データ管理)

Advanced のライセンスで利用可能。

サマリー

入力ラインまたは入力ポリゴンの境界線を頂点で分割することにより生成される、ラインを含むフィーチャクラスを作成します。

[フィーチャの頂点でラインを分割 (Split Line At Vertices)] の図

使用法

  • 入力フィーチャの属性は、出力フィーチャクラス内に保持されます。

  • 入力ラインの始点と終点の間に頂点がない場合は、そのまま出力にコピーされます。頂点がある場合、2 つの連続する頂点間の各セグメントが出力のライン フィーチャになります。同様に、ポリゴン境界線に沿った 2 つの連続する頂点間の各セグメントは、出力のライン フィーチャになります。入力フィーチャに存在する頂点の数によっては、出力フィーチャクラスは非常に大きなファイルになります。

  • パラメトリック カーブ (トゥルー カーブ) のラインまたはセグメントは高密度化されず、出力ライン フィーチャでもトゥルー カーブのままになります。これは、シェープファイル データには適用されません。

  • スクリプトにおけるこのツールの関数名は、SplitLineAtVertices ではなく SplitLine です。

パラメーター

ラベル説明データ タイプ
入力フィーチャ

入力フィーチャ (ラインまたはポリゴン)。

Feature Layer
出力フィーチャクラス

出力ライン フィーチャクラス。

Feature Class

arcpy.management.SplitLine(in_features, out_feature_class)
名前説明データ タイプ
in_features

入力フィーチャ (ラインまたはポリゴン)。

Feature Layer
out_feature_class

出力ライン フィーチャクラス。

Feature Class

コードのサンプル

SplitLine (フィーチャの頂点でラインをスプリット) の例 1 (Python ウィンドウ)

次の Python ウィンドウ スクリプトは、SplitLine (フィーチャの頂点でラインをスプリット) 関数をイミディエイト モードで使用する方法を、例を挙げて示したものです。

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.SplitLine_management("roads.shp", "c:/output/output.gdb/roads_split")
SplitLine (フィーチャの頂点でラインをスプリット) の例 2 (スタンドアロン スクリプト)

次のスタンドアロン スクリプトは、SplitLine (フィーチャの頂点でラインをスプリット) 関数をスクリプティング環境に適用する単純な例を示しています。

# Name: SplitLine_Example2.py
# Description: Split a bus line feature at its vertices (bus stops)
#              and find a midpoint of each new line for further analysis.
# Author: ESRI
 
# import system modules 
import arcpy
from arcpy import env

# Set environment settings
env.workspace = "C:/data"
 
# Set local variables
inFeatures = "buslines.shp"
outFeatureClass = "c:/output/output.gdb/buslines_segments"
midPtsFeatureClass = "c:/output/output.gdb/buslines_segments_midPts"

# Run SplitLine to get new lines, each of which is between two bus stops
arcpy.SplitLine_management(inFeatures, outFeatureClass)

# Execute FeatureVerticesToPoints to find a midpoint for every new line
arcpy.FeatureVerticesToPoints_management(outFeatureClass,
                                         midPtsFeatureClass, "MID")

# Comments: You may add attribute information, such as driving time,
#           to the midpoint feature class and display the attributes 
#           as an alternative label for each line between two bus stops.

ライセンス情報

  • Basic: No
  • Standard: No
  • Advanced: Yes

関連トピック