<?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 Finding orphaned road segments in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631325#M35650</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a shape file of road network. Some of the roads (polylines) are not connected i.e. they are orphaned. I need to identify those orphaned segments so that I can edit. Is there any tool or ideas that you can help me with? Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Mar 2013 00:03:12 GMT</pubDate>
    <dc:creator>BenkteshSharma</dc:creator>
    <dc:date>2013-03-08T00:03:12Z</dc:date>
    <item>
      <title>Finding orphaned road segments</title>
      <link>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631325#M35650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a shape file of road network. Some of the roads (polylines) are not connected i.e. they are orphaned. I need to identify those orphaned segments so that I can edit. Is there any tool or ideas that you can help me with? Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2013 00:03:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631325#M35650</guid>
      <dc:creator>BenkteshSharma</dc:creator>
      <dc:date>2013-03-08T00:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Finding orphaned road segments</title>
      <link>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631326#M35651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is a job for topology and is precisely what it is made for.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To use the topology you have to put the features in a geodatabase, (maybe also a dataset w/in the geodatabase). Then you create a topology. In the topology you create rules. In your case, the rule would be "Must Not Have Dangles" (polylines which have ends that don't connect.) When you check the topology, topology error "layers" are created to identify the errors. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is a topology toolbar. There are tools on it that allow efficient location and manipulation of features to fix or ignore the topology errors. For example, you can get a list of specific topology errors just in the extent of the view you are in so you can fix them. Then you can pan over and check the topology in another view. You can also check the entire dataset at once.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Links:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://www.esri.com/news/arcuser/0401/topo.html"&gt;http://www.esri.com/news/arcuser/0401/topo.html&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001t000000sp000000.htm"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001t000000sp000000.htm&lt;/A&gt;&lt;SPAN&gt; (search for dangles for your case).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2013 02:47:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631326#M35651</guid>
      <dc:creator>MarkBoucher</dc:creator>
      <dc:date>2013-03-08T02:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Finding orphaned road segments</title>
      <link>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631327#M35652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just know that you'll have 'false positives' when it comes to cul de sac streets.&amp;nbsp; In other words, your topology will report more errors than you truly have.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2013 10:56:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631327#M35652</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2013-03-08T10:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Finding orphaned road segments</title>
      <link>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631328#M35653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;To find lines not connected on both ends, try:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Run Feature Vertices To Points tool (Data Management toolbox - Features) with the DANGLE option to get all dangle points. The output points carry ORIG_FID. Lines not connected on both ends will get two points.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Run Frequency tool (Analysis toolbox - Statistics) on the dangle points; specify ORIG_FID field.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Run Join Field tool (Data Management toolbox - Join) to join the lines/roads feature class with the Frequency table via OBJECTID and ORIG_FID; specify to transfer FREQUENCY field. Now any lines with FREQUENCY = 2 are orphaned.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does that work for you?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Mar 2013 14:16:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631328#M35653</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2013-03-10T14:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Finding orphaned road segments</title>
      <link>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631329#M35654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;To find lines not connected on both ends, try:&lt;BR /&gt;&lt;BR /&gt;1. Run Feature Vertices To Points tool (Data Management toolbox - Features) with the DANGLE option to get all dangle points. The output points carry ORIG_FID. Lines not connected on both ends will get two points.&lt;BR /&gt;2. Run Frequency tool (Analysis toolbox - Statistics) on the dangle points; specify ORIG_FID field.&lt;BR /&gt;3. Run Join Field tool (Data Management toolbox - Join) to join the lines/roads feature class with the Frequency table via OBJECTID and ORIG_FID; specify to transfer FREQUENCY field. Now any lines with FREQUENCY = 2 are orphaned.&lt;BR /&gt;&lt;BR /&gt;Does that work for you?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm working on pipeline data checks, and this works perfectly to find any errors when importing multiple data sets from other sources like autoCAD.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2014 19:50:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631329#M35654</guid>
      <dc:creator>ChrisHust</dc:creator>
      <dc:date>2014-06-05T19:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Finding orphaned road segments</title>
      <link>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631330#M35655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey Chris,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am really glad that it worked for you. Thank you very much for taking the time and letting me and other people know.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2014 20:08:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/finding-orphaned-road-segments/m-p/631330#M35655</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2014-06-05T20:08:49Z</dc:date>
    </item>
  </channel>
</rss>

