フィーチャの頂点 → ポイント(Feature Vertices To Points) (データの管理)

サマリ

入力フィーチャの指定された頂点または位置から生成されるポイントを含むフィーチャクラスを作成します。

Feature Vertices To Points
Feature Vertices To Points

使用法

構文

FeatureVerticesToPoints_management (in_features, out_feature_class, {point_location})
パラメータ説明データ タイプ
in_features

入力フィーチャ。入力フィーチャはラインまたはポリゴンのいずれかである。

Feature Layer
out_feature_class

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

Feature Class
point_location
(オプション)

出力ポイントが作成される位置を指定します。

  • ALLポイントは、入力フィーチャの頂点ごとに作成されます。これがデフォルトです。
  • MIDポイントは、各入力ラインまたはポリゴン境界線の中間点(必ずしも頂点とは限らない)に作成されます。
  • STARTポイントは、各入力フィーチャの始点(最初の頂点)に作成されます。
  • ENDポイントは、各入力フィーチャの終点(最後の頂点)に作成されます。
  • BOTH_ENDS各入力フィーチャの始点に 1 つと端点に 1 つの 2 つのポイントが作成されます。
  • DANGLE入力ラインの始点または終点が別のラインのどの位置にも接続されていない場合に、そのポイントのダングル ポイントが作成されます。このオプションはポリゴン入力には適用されません。
String

コードのサンプル

FeatureVerticesToPoints(フィーチャの頂点 → ポイント)の例 1(Python ウィンドウ)

次の Python ウィンドウ スクリプトは、イミディエイト モードで FeatureVerticesToPoints(フィーチャの頂点 → ポイント)関数を使用する方法を示しています。

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.FeatureVerticesToPoints_management("parcels.shp",
                                         "c:/output/output.gdb/parcels_corner", 
                                         "ALL")
FeatureVerticesToPoints(フィーチャの頂点 → ポイント)の例 2(スタンドアロン スクリプト)

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

# Name: FeatureVerticesToPoints_Example2.py
# Description: Use FeatureVerticesToPoints function to get the mid-points
#              of input line features
# Author: ESRI
 
# import system modules 
import arcpy
from arcpy import env

# Set environment settings
env.workspace = "C:/data"
 
# Set local variables
inFeatures = "majorrds.shp"
outFeatureClass = "c:/output/output.gdb/majorrds_midpt"

# Execute FeatureVerticesToPoints
arcpy.FeatureVerticesToPoints_management(inFeatures, outFeatureClass, "MID")

環境

関連項目

ライセンス情報

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

7/10/2012