<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Split line at each intersection in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23670#M1801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Intersection, with output type set to point, followed by Split Line At Points (with a reasonable tolerance) will solve your problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Feb 2011 08:28:45 GMT</pubDate>
    <dc:creator>NiklasNorrthon</dc:creator>
    <dc:date>2011-02-08T08:28:45Z</dc:date>
    <item>
      <title>Split line at each intersection</title>
      <link>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23666#M1797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way, in Python using ArcPy, to split a line at the intersections with the other lines. That is, if I have a long line which intersects many other lines, I'd like to split the long line into a number of shorter lines - split at the intersections.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this possible?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Robin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 06:37:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23666#M1797</guid>
      <dc:creator>RobinWilson</dc:creator>
      <dc:date>2011-02-08T06:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Split line at each intersection</title>
      <link>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23667#M1798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you have access to ArcInfo there are tools that do exactly that. See Identity or Update for example.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If not, maybe the Intersect tool and some coding could work.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 06:54:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23667#M1798</guid>
      <dc:creator>NiklasNorrthon</dc:creator>
      <dc:date>2011-02-08T06:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Split line at each intersection</title>
      <link>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23668#M1799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the very prompt reply! However, I can't quite see how to use those tools to do what I want. The Identity and Update tools state in the help that they require at least one of the inputs to be a polygon, and sadly all of my inputs are polylines. Do you have any ideas how to get around this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It looks like I might be able to use the Intersect tool to create points at the intersections, and then join those up with new lines...maybe. Any further ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Robin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 07:03:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23668#M1799</guid>
      <dc:creator>RobinWilson</dc:creator>
      <dc:date>2011-02-08T07:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Split line at each intersection</title>
      <link>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23669#M1800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Identity works with lines, just tried it, and it seems it adds vertexes at the intersections, but it doesn't split the line. Do some exerimenting and you might find a solution there. Split Line At Vertexes tool might be useful too...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 08:12:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23669#M1800</guid>
      <dc:creator>NiklasNorrthon</dc:creator>
      <dc:date>2011-02-08T08:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: Split line at each intersection</title>
      <link>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23670#M1801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Intersection, with output type set to point, followed by Split Line At Points (with a reasonable tolerance) will solve your problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 08:28:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23670#M1801</guid>
      <dc:creator>NiklasNorrthon</dc:creator>
      <dc:date>2011-02-08T08:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Split line at each intersection</title>
      <link>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23671#M1802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The FeatureToLine tool is another way to do it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 20:23:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/split-line-at-each-intersection/m-p/23671#M1802</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2011-02-08T20:23:19Z</dc:date>
    </item>
  </channel>
</rss>

