Points To Line (Data Management)

Summary

Creates line features from points.

Illustration

Points To Line tool illustration

Usage

  • Line features are only written to the output if the line will contain two or more vertices.

  • If a field is specified as the Line Field parameter value, line features will be constructed with only points of the unique value in the field. The field will be included in the output feature class.

  • If a field is specified as the Sort Field parameter value, points will be sorted in ascending order of the field.

  • You can create polygons from input points by first checking the Close Line parameter to create closed line features. Then use the output line feature class as input to the Feature To Polygon tool to create polygon features.

  • The Line Construction Method parameter specifies how line features will be constructed. Line features can be created by connecting points continuously or by connecting two consecutive points as they are sorted. For example, if the input contains three points that have a Line Field value of A, and four points have a Line Field value of B, the following behaviors are expected from the options:

    • Construct continuous line—Two output lines, one with two segments and one with three segments, will be created. If the Close Line parameter is checked, an additional segment connecting the last point with the start point of each line feature will be added to form a closed line.
    • Construct two-point line—Five output lines, each between consecutive points with the same Line Field value, will be created. If the Close Line parameter is checked, additional line features connecting the last point with the start point for each set of input points with the same Line Field value will be added to form a closed shape.

  • The Attribute Source parameter allows you to specify whether or how the attributes of the input points specified by the Transfer Fields parameter will be transferred to the output lines. The Attribute Source parameter supports the following options:

    • None—No attributes will be transferred.
    • From both start and end points—Attributes will be transferred from the start and end points of each line. The output field names and aliases will be prefixed by START_ and END_, for example, START_FIELD1 (START_ALIAS1), END_FIELD1 (END_ALIAS1), and so on.
    • From start point—Attributes will be transferred from the start point of each line.
    • From end point—Attributes will be transferred from the end point of each line.

  • Use the Transfer Fields parameter to identify the fields that will be transferred from the input. Field values will be transferred according to the Attribute Source parameter value. If a value of None is specified for that parameter, no attributes will be transferred.

Parameters

LabelExplanationData Type
Input Features

The point features that will be used to construct lines.

Feature Layer
Output Feature Class

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

Feature Class
Line Field
(Optional)

The field that will be used to identify unique attribute values so line features can be constructed using points of the same values.

If no field is specified, lines will be constructed without using unique attribute values. This is the default.

Field
Sort Field
(Optional)

The field that will be used to sort the order of the points.

If no field is specified, points used to create output line features will be sorted in the order they are found. This is the default.

Field
Close Line
(Optional)

Specifies whether the output line features will be closed.

  • Checked—For a continuous line, an extra segment connecting the last point with the first point will be included to form a closed line. For two-point lines, an extra line feature connecting the last point with the first point will be included to form a closed shape.
  • Unchecked—No extra segment or line will be created to ensure a closed line or closed shape. This is the default.
Boolean
Line Construction Method
(Optional)

Specifies the method that will be used to construct the line features.

  • Construct continuous lineLine features will be created by connecting points continuously. This is the default.
  • Construct two-point lineLine features will be created by connecting two consecutive points.
String
Attribute Source
(Optional)

Specifies how the specified attributes will be transferred.

  • NoneNo attributes will be transferred. This is the default.
  • Both start and end pointsThe attributes from the start and end points of the line will be transferred.
  • Start pointThe attributes from the start point of the line will be transferred.
  • End pointThe attributes from the end point of the line will be transferred.
String
Transfer Fields
(Optional)

The fields containing values that will be transferred from the source points to the output lines. If no fields are selected, no attributes will be transferred.

If the Attribute Source parameter value is specified as None, this parameter will be inactive.

Field

arcpy.management.PointsToLine(Input_Features, Output_Feature_Class, {Line_Field}, {Sort_Field}, {Close_Line}, {Line_Construction_Method}, {Attribute_Source}, {Transfer_Fields})
NameExplanationData Type
Input_Features

The point features that will be used to construct lines.

Feature Layer
Output_Feature_Class

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

Feature Class
Line_Field
(Optional)

The field that will be used to identify unique attribute values so line features can be constructed using points of the same values.

If no field is specified, lines will be constructed without using unique attribute values. This is the default.

Field
Sort_Field
(Optional)

The field that will be used to sort the order of the points.

If no field is specified, points used to create output line features will be sorted in the order they are found. This is the default.

Field
Close_Line
(Optional)

Specifies whether the output line features will be closed.

  • CLOSEFor a continuous line, an extra segment connecting the last point with the first point will be included to form a closed line. For two-point lines, an extra line feature connecting the last point with the first point will be included to form a closed shape.
  • NO_CLOSENo extra segment or line will be created to ensure a closed line or closed shape. This is the default.
Boolean
Line_Construction_Method
(Optional)

Specifies the method that will be used to construct the line features.

  • CONTINUOUSLine features will be created by connecting points continuously. This is the default.
  • TWO_POINTLine features will be created by connecting two consecutive points.
String
Attribute_Source
(Optional)

Specifies how the specified attributes will be transferred.

  • NONENo attributes will be transferred. This is the default.
  • BOTH_ENDSThe attributes from the start and end points of the line will be transferred.
  • STARTThe attributes from the start point of the line will be transferred.
  • ENDThe attributes from the end point of the line will be transferred.
String
Transfer_Fields
[Transfer_Fields,...]
(Optional)

The fields containing values that will be transferred from the source points to the output lines. If no fields are selected, no attributes will be transferred.

If the Attribute_Source parameter value is specified as NONE, this parameter will be disabled.

Field

Code sample

PointsToLine example (Python window)

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

import arcpy
arcpy.env.workspace = "C:/data"
arcpy.management.PointsToLine("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 the PointsToLine function.

# 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"

# Run PointsToLine 
arcpy.management.PointsToLine(inFeatures, outFeatures, lineField, sortField)
PointsToLine example 3 (stand-alone script)

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

# Description: Convert point features into line features

# Import system modules
import arcpy

# Set environment settings
arcpy.env.workspace = "C:/data/points.gdb"

# Set local variables
inFeatures = "in_points"
outFeatures = "out_lines"
lineField = "lineID"
sortField = "stopID"
transFields = ["OBJECTID", "stopID"]

# Run PointsToLine 
arcpy.management.PointsToLine(inFeatures, outFeatures, lineField, sortField,
                              "NO_CLOSE", "TWO_POINT", "BOTH_ENDS", transFields)

Licensing information

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

Related topics