<?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 distance between many users of a handful of facilities, a small hangup in ArcGIS Network Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420673#M3979</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That was my fault - I ran my test on a feature class called "ex_centroid". I've updated the script to say "YOUR_POINT_LAYER_NAME" in the Spatial Join call (so, change that to your own).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 07 Feb 2015 20:46:39 GMT</pubDate>
    <dc:creator>DarrenWiens2</dc:creator>
    <dc:date>2015-02-07T20:46:39Z</dc:date>
    <item>
      <title>Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420667#M3973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know the ROUTENAME issue has been addressed many times in these forums over the past couple years.&amp;nbsp; I have scoured them and am hung up on one point.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the &lt;A _jive_internal="true" data-containerid="2089" data-containertype="14" data-objectid="88593" data-objecttype="1" href="https://community.esri.com/thread/88593"&gt;shortest distance&lt;/A&gt; thread it is stated that "You might have to load multiple copies of the same park because multiple people use the same park."&amp;nbsp; In my case, these are facilities.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the &lt;A _jive_internal="true" data-containerid="2089" data-containertype="14" data-objectid="233312" data-objecttype="2" href="https://community.esri.com/message/233312#233312"&gt;Re: Finding Distances Between Assigned Locations&lt;/A&gt; thread it is stated that "...your 368 locations are repeating. You could do this with some relates...", but there is not direction on how to use relates to generate repeated "locations."&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to figure out how to make hundreds of duplicate copies of the same facility.&amp;nbsp; Once duplicated, I will then give each one of the hundreds of copies of the same facility a unique ID.&amp;nbsp; Then I can match the facility to the thousands of users of it using ROUTENAME.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is just duplicating the facility that is hanging me up.&amp;nbsp; Please help.&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2015 18:23:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420667#M3973</guid>
      <dc:creator>chriscoutts</dc:creator>
      <dc:date>2015-02-07T18:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420668#M3974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I'm reading this right, your main question is how to duplicate geometries. Here's how, using Python:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; duplicates = 100
&amp;gt;&amp;gt;&amp;gt; points = []
&amp;gt;&amp;gt;&amp;gt; with arcpy.da.SearchCursor("YOUR_POINT_LAYER_NAME",["SHAPE@"]) as cursor:
...&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i in range(duplicates):
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; points.append(row[0])
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;gt;&amp;gt;&amp;gt; arcpy.CopyFeatures_management(points,'in_memory\out_points')
&amp;lt;Result 'in_memory\\out_points'&amp;gt;
&amp;gt;&amp;gt;&amp;gt; arcpy.SpatialJoin_analysis("out_points",&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;"YOUR_POINT_LAYER_NAME"&lt;/SPAN&gt;,r'in_memory\sp_join_output',"JOIN_ONE_TO_ONE","KEEP_ALL",'#',"ARE_IDENTICAL_TO")
&amp;lt;Result 'in_memory\\sp_join_output'&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:00:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420668#M3974</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2021-12-11T19:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420669#M3975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really appreciate the prompt response.&amp;nbsp; Thanks very much.&lt;/P&gt;&lt;P&gt;In one feature class (facilities) I have 19 individual points.&amp;nbsp; I am trying to make hundreds of copies of each point (facility).&amp;nbsp; Will the script you provided tackle this?&amp;nbsp; If so, I'm a novice GIS user, could you tell me where to plug in this script?&amp;nbsp; Thanks again, Darren.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2015 19:45:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420669#M3975</guid>
      <dc:creator>chriscoutts</dc:creator>
      <dc:date>2015-02-07T19:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420670#M3976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This script will make 100 copies of each feature in the feature class "Your point layer name" (of course, change that to your later name). Change the number of duplicates if you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This script can go into the Python window, accessed under the geoprocessing menu in ArcMap.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2015 19:56:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420670#M3976</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-02-07T19:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420671#M3977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Beautiful.&amp;nbsp; I am going to give it a run, but it may be a couple days before I can get back to it.&amp;nbsp; Thanks so much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2015 20:09:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420671#M3977</guid>
      <dc:creator>chriscoutts</dc:creator>
      <dc:date>2015-02-07T20:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420672#M3978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Runtime error&amp;nbsp; Traceback (most recent call last):&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;&amp;nbsp;&amp;nbsp; File "c:\program files\arcgis\desktop10.1\arcpy\arcpy\analysis.py", line 481, in SpatialJoin raise e ExecuteError: ERROR 000732: Target Features: Dataset out_points does not exist or is not supported ERROR 000732: Join Features: Dataset ex_centroid does not exist or is not supported&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what is spit back at me.&amp;nbsp; Running now, but will go back through the code to make sure I put in exactly what you provided.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2015 20:28:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420672#M3978</guid>
      <dc:creator>chriscoutts</dc:creator>
      <dc:date>2015-02-07T20:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420673#M3979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That was my fault - I ran my test on a feature class called "ex_centroid". I've updated the script to say "YOUR_POINT_LAYER_NAME" in the Spatial Join call (so, change that to your own).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2015 20:46:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420673#M3979</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-02-07T20:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420674#M3980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may be interested in this thread: &lt;A href="https://community.esri.com/thread/119219"&gt;Copy features a number of times based on a numeric field value&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Feb 2015 20:13:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420674#M3980</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-02-08T20:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420675#M3981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is EXACTLY what I need to do.&amp;nbsp; I have never used Python script before, but I've invested no less than 8 hours trying to use the "Copy features..." code you provided.&amp;nbsp; Using Geoprocessing=&amp;gt;Python does not work.&amp;nbsp; Lots of &amp;gt;&amp;gt;&amp;gt; and ... symbols that appear to be present in some codes (such as above), but not in yours.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also created a .py file with the code, created a toolbox, and used the script wizard in an attempt to run it as well.&amp;nbsp; No luck.&amp;nbsp; Of course, I adapted your code to my own file location paths.&amp;nbsp; That is where it goes wrong early on.&amp;nbsp; A lot of red text results make the claim that the files do not exist even though I have confirmed many times that they do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would love to run this script if you think you can guide me through getting it running without burdening yourself too much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2015 20:09:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420675#M3981</guid>
      <dc:creator>chriscoutts</dc:creator>
      <dc:date>2015-02-10T20:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420676#M3982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was really excited about getting this working, but I am failing right in line 1 somehow.&amp;nbsp; Here's a screenshot:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/60689_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;I am really put some time into trying to understand where I was failing before bugging you, but I am stuck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2015 20:16:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420676#M3982</guid>
      <dc:creator>chriscoutts</dc:creator>
      <dc:date>2015-02-10T20:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420677#M3983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need matching quotes around "SHAPE@"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2015 20:48:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420677#M3983</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-02-10T20:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating distance between many users of a handful of facilities, a small hangup</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420678#M3984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the code that eventually worked. The one in the &lt;A _jive_internal="true" data-containerid="2087" data-containertype="14" data-objectid="119219" data-objecttype="1" href="https://community.esri.com/thread/119219"&gt;Copy features a number of times based on a numeric field value&lt;/A&gt; thread did not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;def main():&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import arcpy&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; import os&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_in = r"C:\Users\ccoutts\Desktop\Props\CRC_MultiGRant\Map1\Facilities1.shp" # this one exists&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fld_count = "obs"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_out = r"C:\Users\ccoutts\Desktop\Props\CRC_MultiGRant\Map1\Facilities2.shp" # this one will be created&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sr = arcpy.Describe(fc_in).spatialReference&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # create the empty output featureclass&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; path, name = os.path.split(fc_out)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CreateFeatureclass_management(path, name, "POINT", fc_in, "SAME_AS_TEMPLATE", "SAME_AS_TEMPLATE", sr)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # insert the features into the output fc&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.SearchCursor(fc_in, '*') as curs_in:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; flds_in = curs_in.fields&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; idx_cnt = flds_in.index(fld_count)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.InsertCursor(fc_out, '*') as curs_out:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in curs_in:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cnt = row[idx_cnt]&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i in range(0, cnt):&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; curs_out.insertRow(row)&amp;nbsp; &lt;/P&gt;&lt;P&gt;main()&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 21:06:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/calculating-distance-between-many-users-of-a/m-p/420678#M3984</guid>
      <dc:creator>chriscoutts</dc:creator>
      <dc:date>2015-03-25T21:06:26Z</dc:date>
    </item>
  </channel>
</rss>

