Is there a way to split the line features in a feature class where they intersect the features of another feature class? I'd like to split roads where they cross property lines.
Hey Scott,
Could you mark this as Helpful and Correct? That is if I have answered your question.
Thanks!
James
You can do a Intersect using the polyline(roads) and the polygon(property). Be sure to change the output type to points. When the road intersects the property, it creates a point.
Thanks
Check out the Data Management Tools-Toolbox Features. There are a bunch of split lines by vertex, point, and etc. If you could figure a way to drop a point where the line intersects a polygon, then you could run these tools.
Still looking for a solution!
Scott,
Have you tried the Planarize Lines tool on the advanced Editing toolbar?
Matthew
One way to do this is to use XTools Pro, a handy third-party software that works in ArcGIS. They have a function called "Split Polylines" that offers a multitude of ways to split a line, including by another feature class.
XToolsPro, Feature Conversions, Split Polylines. Then choose "Split Polylines by another layer".
http://www.xtoolspro.com/
They have a trial download available so you can test it out.
Chris Donohue, GISP
Here is a link Split into equal length features | ArcPy Café This may help get an idea.
Hello,
One method would be to select by location and select properties that roads.shp intersects. Export the highlighted parcels into a new shapefile. Then, zoom to each parcel and split where the road intersects the parcel boundary. Another method would be to use Python code to find where the line intersects the property, create a vertex, and split the line at the vertex.
Method one can be done in an Edit Session by using the split tool. (Could be time consuming.) Method two is the road less traveled. You will learn a great deal about Python Scripting if traveled.
I will continue to look for a solution.
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.