ポイント → ライン(Points to Line) (データ管理)
サマリ
ポイントからライン フィーチャを作成します。
図
使用法
-
2 つ未満の頂点から構成されているライン フィーチャは、出力に書き込まれません。
構文
PointsToLine_management (Input_Features, Output_Feature_Class, {Line_Field}, {Sort_Field}, {Close_Line})
パラメータ | 説明 | データ タイプ |
Input_Features |
ラインに変換するポイント フィーチャ。 | Feature Layer |
Output_Feature_Class |
入力ポイントから作成されるライン フィーチャクラス。 | Feature Class |
Line_Field (オプション) |
出力に含まれる各フィーチャは、ライン フィールド内の一意の値に基づきます。 | Field |
Sort_Field (オプション) |
デフォルトでは、各出力ライン フィーチャの作成に使用されるポイントが見つかった順序で使用されます。順序を変更したい場合は、[ソート フィールド] を指定してください。 | Field |
Close_Line (オプション) |
出力ライン フィーチャを閉じる必要があるかどうかを指定します。
| Boolean |
コードのサンプル
PointsToLine(ポイント → ライン)の例(Python ウィンドウ)
次の Python ウィンドウ スクリプトは、イミディエイト モードで PointsToLine(ポイント → ライン)関数を使用する方法を示しています。
import arcpy
arcpy.env.workspace = "C:/data"
arcpy.PointsToLine_management("calibration_points.shp",
"C:/output/output.gdb/out_lines",
"ROUTE1", "MEASURE")
PointsToLine(ポイント → ライン)の例 2(スタンドアロン スクリプト)
次のスタンドアロン スクリプトは、PointsToLine(ポイント → ライン)を使用する方法を示しています。
# Name: PointsToLine_Example2.py
# Description: Convert point features into line features
# Import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = "C:/data"
# Set local variables
inFeatures = "calibration_points.shp"
outFeatures = "C:/output/output.gdb/out_lines"
lineField = "ROUTE1"
sortField = "MEASURE"
# Execute PointsToLine
arcpy.PointsToLine_management(inFeatures, outFeatures, lineField, sortField)
環境
関連トピック
ライセンス情報
ArcGIS for Desktop Basic: ○
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
7/28/2014