<?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: OD Cost Matrix for symmetric distances in ArcGIS Network Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-network-analyst-questions/od-cost-matrix-for-symmetric-distances/m-p/694582#M6711</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry, this question has already been asked:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/55350-Economizing-OD-Cost-Matrix-when-A-gt-B-B-gt-A"&gt;http://forums.arcgis.com/threads/55350-Economizing-OD-Cost-Matrix-when-A-gt-B-B-gt-A&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Theo&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello all,&lt;BR /&gt;&lt;BR /&gt;For research purposes, I am currently solving OD Cost Matrix to compute shortest paths distances for about 10'000 origins and destinations (origins = destinations). I am using a undirected network, so the distance from A to B equal distance from B to A (symmetric distances). Therefore, do anyone has an idea on how to customize the OD Cost Matrix tool so that it only computes A to B and not B to A ? This would halve the size of the database and the computing time.&lt;BR /&gt;&lt;BR /&gt;Any idea ?&lt;BR /&gt;Best regards,&lt;BR /&gt;Theo&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 May 2012 16:14:29 GMT</pubDate>
    <dc:creator>TheophileEmmanouilidis</dc:creator>
    <dc:date>2012-05-01T16:14:29Z</dc:date>
    <item>
      <title>OD Cost Matrix for symmetric distances</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/od-cost-matrix-for-symmetric-distances/m-p/694581#M6710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For research purposes, I am currently solving OD Cost Matrix to compute shortest paths distances for about 10'000 origins and destinations (origins = destinations). I am using a undirected network, so the distance from A to B equal distance from B to A (symmetric distances). Therefore, do anyone has an idea on how to customize the OD Cost Matrix tool so that it only computes A to B and not B to A ? This would halve the size of the database and the computing time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any idea ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Theo&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 16:03:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/od-cost-matrix-for-symmetric-distances/m-p/694581#M6710</guid>
      <dc:creator>TheophileEmmanouilidis</dc:creator>
      <dc:date>2012-05-01T16:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: OD Cost Matrix for symmetric distances</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/od-cost-matrix-for-symmetric-distances/m-p/694582#M6711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry, this question has already been asked:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/55350-Economizing-OD-Cost-Matrix-when-A-gt-B-B-gt-A"&gt;http://forums.arcgis.com/threads/55350-Economizing-OD-Cost-Matrix-when-A-gt-B-B-gt-A&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Theo&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello all,&lt;BR /&gt;&lt;BR /&gt;For research purposes, I am currently solving OD Cost Matrix to compute shortest paths distances for about 10'000 origins and destinations (origins = destinations). I am using a undirected network, so the distance from A to B equal distance from B to A (symmetric distances). Therefore, do anyone has an idea on how to customize the OD Cost Matrix tool so that it only computes A to B and not B to A ? This would halve the size of the database and the computing time.&lt;BR /&gt;&lt;BR /&gt;Any idea ?&lt;BR /&gt;Best regards,&lt;BR /&gt;Theo&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 16:14:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/od-cost-matrix-for-symmetric-distances/m-p/694582#M6711</guid>
      <dc:creator>TheophileEmmanouilidis</dc:creator>
      <dc:date>2012-05-01T16:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: OD Cost Matrix for symmetric distances</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/od-cost-matrix-for-symmetric-distances/m-p/694583#M6712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hallo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am assuming that your O and D are same in number and same in locations. I am also assuming that OD cost matrix can be called with a python script. If above two conditions are true, then a small code "if j &amp;gt; i then calculate distance" will give the required result, where Ai is set of O and Bj is set of D and i is exact same quantity as j, because number of O = number of D. This will give you matrix values above the diagonal, that is one half of the matrix (diagonal being zero of course)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello all,&lt;BR /&gt;&lt;BR /&gt;For research purposes, I am currently solving OD Cost Matrix to compute shortest paths distances for about 10'000 origins and destinations (origins = destinations). I am using a undirected network, so the distance from A to B equal distance from B to A (symmetric distances). Therefore, do anyone has an idea on how to customize the OD Cost Matrix tool so that it only computes A to B and not B to A ? This would halve the size of the database and the computing time.&lt;BR /&gt;&lt;BR /&gt;Any idea ?&lt;BR /&gt;Best regards,&lt;BR /&gt;Theo&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 16:34:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/od-cost-matrix-for-symmetric-distances/m-p/694583#M6712</guid>
      <dc:creator>RamB</dc:creator>
      <dc:date>2012-05-03T16:34:53Z</dc:date>
    </item>
  </channel>
</rss>

