<?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: Combine Lines With Same Start And End Nodes in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/1510953#M27358</link>
    <description>&lt;P&gt;I want a tool that performs the same functionality as “integrate,” but with the output being a new feature class rather than modifying the input feature class.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_1155.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/110841i4A68B16F7079AE81/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_1155.jpg" alt="Clip_1155.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 27 Jul 2024 06:31:33 GMT</pubDate>
    <dc:creator>JamalNUMAN</dc:creator>
    <dc:date>2024-07-27T06:31:33Z</dc:date>
    <item>
      <title>Combine Lines With Same Start And End Nodes</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598316#M19864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am in a bit of a pickle. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Today I recieved a dataset of road lines which I plan to use for routing purposes. To my horror I discovered that the road lines where not captured according to any logical standard (some road lines are split midway, some roadlines go through intersections, some don't, some roadlines are split at intersection and some are not etc. etc).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I should also mention at this point that the data table do not contain any information which can be used to join these fragmented road lines. So what I probaly need to do is iterate through the dataset and join all lines which has the same end and start node. This will however also cause t junctions that end in the line to become part of this join.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;a. Does anybody know of a automated way to join all lines that have the same start and end node. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;b. T junctions end in some of the intersection so they will inevitably be included in the above mentioned join, does anybody know of a way to counter this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help will grately be appreciated. I am new to the world of routing (which sofar has proved to be depressing) and I do not want to spend hours manually editing the dataset when there is a easier way to do it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any advice will be greatly appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kind regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Gert&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 19:09:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598316#M19864</guid>
      <dc:creator>GertGeringer</dc:creator>
      <dc:date>2011-08-16T19:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Lines With Same Start And End Nodes</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598317#M19865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Gert,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; [INDENT]As a first step you need to prepare your data so that it can be used to build a Network Dataset. Once you have a Network Dataset, you can perform routing or any other network analysis.[/INDENT] &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]Your have to carefully analyze the street data and then do the necessary edits to ensure that the street centerlines have correct connectivity information that is required for building network datasets. While there is no single magic tool that will take your data and correct all errors in it, you can do this in a semi-automated way. The first step is to ensure that the lines connect end to end. If this is not the caase, you can run the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Integrate/00170000002s000000/"&gt;Integrate&lt;/A&gt;&lt;SPAN&gt; geoprocessing tool.&amp;nbsp; This will combine all the line ends if they are within the specified tolerance. You might have to try different values to determine the tolerance that works best for your data.[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]After integrate, you should build a &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//006200000001000000.htm"&gt;topology&lt;/A&gt;&lt;SPAN&gt; from your street centerlines and set the necessary rules. This should further clean up your data.[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; [INDENT]Once the topology is correct, you can create a new network dataset. There are various options that you can use when &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Creating_a_network_dataset/00470000000w000000/"&gt;creating a network dataset.&lt;/A&gt;&lt;SPAN&gt; The help topic has additional pointers to related topics.[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]Note even after you have edited the data to have the necessary connectivity, you will still need some attributes on streets centerlines such as Oneway street information as well as speed limits to model travel time. This is required to set up network attributes that are used during analysis.[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]If all this sounds too daunting, you can start with a free network dataset provided on Esri Data and Maps DVD that comes with ArcGIS. You can find it within the Streetmap_na\data folder on the DVD. This is a prebuilt readonly network dataset for whole of US and Canada. You can add the "Streets" network dataset to ArcMap from within this folder, enable the Network Analyst Extension and start performing network analysis. The data is about 5 years old, but it provides a good starting point.[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; [INDENT]I will also recommend to have a look at the &lt;/SPAN&gt;&lt;A href="http://proceedings.esri.com/library/userconf/proc11/uc/tw-pdfs/tw_1024.pdf"&gt;technical workshop about creating network datasets&lt;/A&gt;&lt;SPAN&gt; presented at the Esri User conference. This should provide you with concepts necessary to build a good network dataset. [/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Deelesh Mandloi&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 21:18:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598317#M19865</guid>
      <dc:creator>DeeleshMandloi</dc:creator>
      <dc:date>2011-08-16T21:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Lines With Same Start And End Nodes</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598318#M19866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Deelesh,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for the advice. I have worked with the topology tools and will give it a try. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Gert&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 04:20:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598318#M19866</guid>
      <dc:creator>GertGeringer</dc:creator>
      <dc:date>2011-08-17T04:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Lines With Same Start And End Nodes</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598319#M19867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The following tools might be helpful as well (requiring ArcInfo License):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Feature To Line tool (Data Management toolbox - Features toolset) breaks lines at intersections.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Dissolve with the UNSPLIT option and the new tool, Unsplit Line, in ArcGIS 10 remove pseudo nodes (lines with end-to-end connections, not at T- or cross-intersections).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 19:44:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598319#M19867</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2011-08-17T19:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Lines With Same Start And End Nodes</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598320#M19868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, I am going to give the tools you've mentioned a try. Hopefully they can save me a couple of hours work!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Gert&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2011 05:06:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598320#M19868</guid>
      <dc:creator>GertGeringer</dc:creator>
      <dc:date>2011-08-18T05:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Lines With Same Start And End Nodes</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598321#M19869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You are welcome. I hope they can save you many hours.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2011 15:15:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/598321#M19869</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2011-08-18T15:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Lines With Same Start And End Nodes</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/1510953#M27358</link>
      <description>&lt;P&gt;I want a tool that performs the same functionality as “integrate,” but with the output being a new feature class rather than modifying the input feature class.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_1155.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/110841i4A68B16F7079AE81/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_1155.jpg" alt="Clip_1155.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jul 2024 06:31:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/combine-lines-with-same-start-and-end-nodes/m-p/1510953#M27358</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2024-07-27T06:31:33Z</dc:date>
    </item>
  </channel>
</rss>

