<?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: intersect lines output points in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/intersect-lines-output-points/m-p/353348#M12250</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another approach is to:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;Extract the end points&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;create XY fields&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;concatenate xy field into a string field&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;do a summary stats on string field, this gives you the valency of the node (how many polylines attached to it)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;join table back to node featureclass and label with valency&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;SPAN&gt;Duncan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jul 2013 10:26:52 GMT</pubDate>
    <dc:creator>DuncanHornby</dc:creator>
    <dc:date>2013-07-11T10:26:52Z</dc:date>
    <item>
      <title>intersect lines output points</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/intersect-lines-output-points/m-p/353345#M12247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to intersect a single line feature class to find where lines cross.&amp;nbsp; unfortunatly this process picks up places where lines are "snapped" togeather as the vertexes are in the same location.&amp;nbsp; any ideas how i can do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am currently mapping storm sewer pipes and sometimes the pipes cross each other without connecting.&amp;nbsp; in the past i was making a small kink in the pipe to represent the crossing but we want to swithc to a point symbol as it will reduce clutter/ be more visually accurate/ be pleasing to the eye...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2013 14:06:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/intersect-lines-output-points/m-p/353345#M12247</guid>
      <dc:creator>DavidAinley1</dc:creator>
      <dc:date>2013-07-10T14:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: intersect lines output points</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/intersect-lines-output-points/m-p/353346#M12248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;On a copy of your pipes in a geodatabase create a geometric network of your pipes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Make the network with complex edges.&amp;nbsp; this should then create a network junction at each intersection.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then export the network junctions as something else and you will have a set of points at all intersections. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Remove the network.&amp;nbsp; Create it again with Simple junctions.&amp;nbsp; Select by Location the saved complex junctions with the simple junctions.&amp;nbsp; Where there is an intersect that is where the actual intersections are.&amp;nbsp; Delete the matches and you will be left with a set of points where two pipes cross but are not connected.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It would actually take you a less time to do this than it took me to type it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2013 18:54:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/intersect-lines-output-points/m-p/353346#M12248</guid>
      <dc:creator>RobertBorchert</dc:creator>
      <dc:date>2013-07-10T18:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: intersect lines output points</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/intersect-lines-output-points/m-p/353347#M12249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I do not have the network analyst extension.&amp;nbsp; Any other ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jul 2013 10:18:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/intersect-lines-output-points/m-p/353347#M12249</guid>
      <dc:creator>DavidAinley1</dc:creator>
      <dc:date>2013-07-11T10:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: intersect lines output points</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/intersect-lines-output-points/m-p/353348#M12250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another approach is to:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;Extract the end points&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;create XY fields&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;concatenate xy field into a string field&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;do a summary stats on string field, this gives you the valency of the node (how many polylines attached to it)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;join table back to node featureclass and label with valency&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;SPAN&gt;Duncan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jul 2013 10:26:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/intersect-lines-output-points/m-p/353348#M12250</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2013-07-11T10:26:52Z</dc:date>
    </item>
  </channel>
</rss>

