Polyline to Circle

4173
3
Jump to solution
02-20-2015 12:50 AM
ChittayongSurakitbanharn
New Contributor

Hi,

I have a layer of 120 polylines created from XY coordinates of start and end points.  I now would like to create a layer of circles (polylines not polygons) with one end point of each polyline as the center and the other end point of the polyline as the outer radius.

How do I do this?

Thanks!

0 Kudos
1 Solution

Accepted Solutions
JayantaPoddar
MVP Esteemed Contributor

Hi,

You could follow the following workflow.

1) Add 3 fields to the polyline layer, viz., Length (in meters), Start_X (X Coordinate/Longitude of Starting point), and Start_Y (Y Coordinate/Latitude of Starting point) using Calculate Geometry in the attribute table.

2) Export the attribute table to a table file (e.g. *.dbf)

3) In ArcCatalog, create XY point feature class from the above table file. Define a GCS spatial reference.

4) Reproject the shapefile to a projected coordinate system (e.g. UTM).

5) Use Buffer (Analysis) tool to build the Circles, as desired.

Note: We are reprojecting the points to PCS, so that the buffer takes up linear units (meters) and not angular units (Degree Decimal).

I hope it solves your issue.

Thanks,

Jay



Think Location

View solution in original post

3 Replies
JayantaPoddar
MVP Esteemed Contributor

Hi,

You could follow the following workflow.

1) Add 3 fields to the polyline layer, viz., Length (in meters), Start_X (X Coordinate/Longitude of Starting point), and Start_Y (Y Coordinate/Latitude of Starting point) using Calculate Geometry in the attribute table.

2) Export the attribute table to a table file (e.g. *.dbf)

3) In ArcCatalog, create XY point feature class from the above table file. Define a GCS spatial reference.

4) Reproject the shapefile to a projected coordinate system (e.g. UTM).

5) Use Buffer (Analysis) tool to build the Circles, as desired.

Note: We are reprojecting the points to PCS, so that the buffer takes up linear units (meters) and not angular units (Degree Decimal).

I hope it solves your issue.

Thanks,

Jay



Think Location
JayantaPoddar
MVP Esteemed Contributor

Forgot to add my output snapshot!!!



Think Location
ChittayongSurakitbanharn
New Contributor

Extremely helpful!  Thanks Jay!

0 Kudos