Points To Line (Data Management)

License Level:BasicStandardAdvanced

Summary

Creates line features from points.

Illustration

Point to line example

Usage

Syntax

PointsToLine_management (Input_Features, Output_Feature_Class, {Line_Field}, {Sort_Field}, {Close_Line})
ParameterExplanationData Type
Input_Features

The point features to be converted into lines.

Feature Layer
Output_Feature_Class

The line feature class which will be created from the input points.

Feature Class
Line_Field
(Optional)

Each feature in the output will be based on unique values in the Line Field.

Field
Sort_Field
(Optional)

By default, points used to create each output line feature will be used in the order they are found. If a different order is desired, specify a Sort Field.

Field
Close_Line
(Optional)

Specifies whether output line features should be closed.

  • CLOSEAn extra vertex will be added to ensure that every output line feature's end point will match up with its start point. Then polygons can be generated from the line feature class using the Feature To Polygon tool.
  • NO_CLOSENo extra vertices will be added to close an output line feature. This is the default.
Boolean

Code Sample

PointsToLine Example (Python Window)

The following Python window script demonstrates how to use the PointsToLine function in immediate mode.

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.PointsToLine_management("calibration_points.shp", "C:/output/output.gdb/out_lines", "ROUTE1", "MEASURE")
PointsToLine Example 2 (stand-alone script)

The following stand-alone script demonstrates how to use PointsToLine.

# Name: PointsToLine_Example2.py
# Description: Convert point features into line features
# Author: ESRI

# Import system modules
import arcpy
from arcpy import env

# Set environment settings
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)

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: Yes
ArcGIS for Desktop Standard: Yes
ArcGIS for Desktop Advanced: Yes
11/18/2013