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

サマリ

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

Split Lines At Vertices illustration

使用法

構文

SplitLine_management (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.

環境

関連項目

ライセンス情報

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

7/10/2012