<?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: Calculating Shortest Paths for Individual Rows in Large Network Dataset in ArcGIS Network Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325841#M8464</link>
    <description>&lt;P&gt;What network dataset are you using?&amp;nbsp; Is it one you created yourself?&amp;nbsp; Usually when I see routes like this, it's a symptom of a network dataset connectivity problem or a problem with the way the cost attributes are configured.&amp;nbsp; The Route solver will always return the "shortest" path, but if the cost attributes are returning incorrect values, the shortest path calculation will also be incorrect.&amp;nbsp; Or, if there is no connection between roads at intersections, the shortest path may be to travel very far until it finds a usable connection.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Sep 2023 13:11:31 GMT</pubDate>
    <dc:creator>MelindaMorang</dc:creator>
    <dc:date>2023-09-06T13:11:31Z</dc:date>
    <item>
      <title>Calculating Shortest Paths for Individual Rows in Large Network Dataset</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325291#M8454</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I need help with network analysis on the Esri Community forum. I have a table with 100,000 rows describing routes from point A to point B. Each route is described by starting and ending coordinates. I also have a prepared network dataset, and I need to calculate the shortest path along the line for each row. I tried using "cos matrices," but it combines all the rows.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tables.png" style="width: 329px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/79809iCE8650E63CC07343/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tables.png" alt="tables.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 05:41:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325291#M8454</guid>
      <dc:creator>JiříKomínek</dc:creator>
      <dc:date>2023-09-05T05:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Shortest Paths for Individual Rows in Large Network Dataset</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325377#M8457</link>
      <description>&lt;P&gt;Happy to help with this.&lt;/P&gt;&lt;P&gt;As you've discovered the OD Cost Matrix is useful when you want to calculate the travel time and distance between all origins and all destinations or between all origins and the closest k destinations or all destinations within some cutoff.&amp;nbsp; It's not the right tool to use if you have preassigned origin-destination pairs.&lt;/P&gt;&lt;P&gt;You can use the Route solver to handle preassigned origin-destination pairs.&amp;nbsp; You have to make sure each origin and destination are assigned to the same route.&amp;nbsp; You can use the RouteName field in the input Stops for this.&amp;nbsp; All stops with the same RouteName value end up on the same route.&amp;nbsp; Let's say, for example, you have rows for stops A, B, C, and D.&amp;nbsp; A is assigned to B, and C is assigned to D.&amp;nbsp; You should create a RouteName field and give the rows for A and B a RouteName value of A-B and rows C and D a RouteName value of C-D, or something like that. The Route solver will generate two separate routes, one from A to B and the other from C to D.&lt;/P&gt;&lt;P&gt;Since the number of routes you have is pretty large, you may benefit from this downloadable toolset:&amp;nbsp;&lt;A href="https://github.com/Esri/large-network-analysis-tools" target="_blank"&gt;https://github.com/Esri/large-network-analysis-tools&lt;/A&gt;&amp;nbsp; One of the tools in there is intended to solve large problems with preassigned OD pairs exactly like you're describing.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 13:28:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325377#M8457</guid>
      <dc:creator>MelindaMorang</dc:creator>
      <dc:date>2023-09-05T13:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Shortest Paths for Individual Rows in Large Network Dataset</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325378#M8458</link>
      <description>&lt;P&gt;I've actually recently been doing some research regarding preassigned origin-destination pair problems.&amp;nbsp; I know this is a common workflow, and my team would like to find a more convenient workflow.&amp;nbsp; If you have a few minutes and are willing, could you fill out the attached survey and return it to me?&amp;nbsp; This would be very helpful in helping us understand user needs so we can design something better in the future.&amp;nbsp; Thanks!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 13:30:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325378#M8458</guid>
      <dc:creator>MelindaMorang</dc:creator>
      <dc:date>2023-09-05T13:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Shortest Paths for Individual Rows in Large Network Dataset</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325383#M8459</link>
      <description>&lt;P&gt;Thank you very much! I will try it tonight. I read quickly documentation and it looks like what i need.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 13:36:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325383#M8459</guid>
      <dc:creator>JiříKomínek</dc:creator>
      <dc:date>2023-09-05T13:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Shortest Paths for Individual Rows in Large Network Dataset</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325750#M8463</link>
      <description>&lt;P&gt;thanks I tried the tool, but instead of the shortest path between points I got the longest possible distance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I don't know why, but this is not quite the right calculation. I tried it with only 4 points for a sample, OD COS Matrix gives a realistic result.&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="route.png" style="width: 379px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/79923i83F2B846A11C4EA4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="route.png" alt="route.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 07:17:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325750#M8463</guid>
      <dc:creator>JiříKomínek</dc:creator>
      <dc:date>2023-09-06T07:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Shortest Paths for Individual Rows in Large Network Dataset</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325841#M8464</link>
      <description>&lt;P&gt;What network dataset are you using?&amp;nbsp; Is it one you created yourself?&amp;nbsp; Usually when I see routes like this, it's a symptom of a network dataset connectivity problem or a problem with the way the cost attributes are configured.&amp;nbsp; The Route solver will always return the "shortest" path, but if the cost attributes are returning incorrect values, the shortest path calculation will also be incorrect.&amp;nbsp; Or, if there is no connection between roads at intersections, the shortest path may be to travel very far until it finds a usable connection.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 13:11:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-shortest-paths-for-individual-rows-in/m-p/1325841#M8464</guid>
      <dc:creator>MelindaMorang</dc:creator>
      <dc:date>2023-09-06T13:11:31Z</dc:date>
    </item>
  </channel>
</rss>

