<?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: least cost path with multiple, sequential points in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/least-cost-path-with-multiple-sequential-points/m-p/446782#M6323</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; I have many points in my feature class, and multiple feature classes for different individuals, so I think if doing multiple cost paths is the only way to generate a path through all the points, I would definitely need a model or python script to make this method feasible. Unfortunately, I have no experience with python script writing....&lt;BR /&gt;Any further tips?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suggest working out this analysis for the first two features by running tools interactively. Once you've done that, you'll have the problem a little better defined and know which tools will work, how the environments need to be set for the tool to run correctly, etc.. Then, you can also build a simple model to accomplish your task, ie "given an input point layer, a source, and destination feature ID, calculate the by-cell cost path raster."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This model could then be run from another (looping) model or python script. Breaking up the analysis into pieces like this makes the task a lot easier.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Mar 2012 19:37:53 GMT</pubDate>
    <dc:creator>curtvprice</dc:creator>
    <dc:date>2012-03-06T19:37:53Z</dc:date>
    <item>
      <title>least cost path with multiple, sequential points</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/least-cost-path-with-multiple-sequential-points/m-p/446779#M6320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a feature class containing point locations for an individual fish. I would like to calculate the least cost path between these points sequentially, as they appear in the attributes table, so my end result is a path connecting the points. I have a cost surface ready to use, but am unsure how to use this tool with multiple points (ie A to B, B to C, C to D, etc), rather than a simple A to B scenario.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any advice would be greatly appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Melanie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 18:10:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/least-cost-path-with-multiple-sequential-points/m-p/446779#M6320</guid>
      <dc:creator>MelanieShapiera</dc:creator>
      <dc:date>2012-03-06T18:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: least cost path with multiple, sequential points</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/least-cost-path-with-multiple-sequential-points/m-p/446780#M6321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you definitely want a sequential path, doing multiple least cost path analyses and combining them at the end using Mosaic (or Cell Statistics with MAX, ignoring NODATA) would do the trick.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It may require a python script to iteratively select each set of points and run the analysis.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 19:00:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/least-cost-path-with-multiple-sequential-points/m-p/446780#M6321</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-03-06T19:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: least cost path with multiple, sequential points</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/least-cost-path-with-multiple-sequential-points/m-p/446781#M6322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have many points in my feature class, and multiple feature classes for different individuals, so I think if doing multiple cost paths is the only way to generate a path through all the points, I would definitely need a model or python script to make this method feasible. Unfortunately, I have no experience with python script writing....&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any further tips?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 19:22:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/least-cost-path-with-multiple-sequential-points/m-p/446781#M6322</guid>
      <dc:creator>MelanieShapiera</dc:creator>
      <dc:date>2012-03-06T19:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: least cost path with multiple, sequential points</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/least-cost-path-with-multiple-sequential-points/m-p/446782#M6323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; I have many points in my feature class, and multiple feature classes for different individuals, so I think if doing multiple cost paths is the only way to generate a path through all the points, I would definitely need a model or python script to make this method feasible. Unfortunately, I have no experience with python script writing....&lt;BR /&gt;Any further tips?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suggest working out this analysis for the first two features by running tools interactively. Once you've done that, you'll have the problem a little better defined and know which tools will work, how the environments need to be set for the tool to run correctly, etc.. Then, you can also build a simple model to accomplish your task, ie "given an input point layer, a source, and destination feature ID, calculate the by-cell cost path raster."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This model could then be run from another (looping) model or python script. Breaking up the analysis into pieces like this makes the task a lot easier.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 19:37:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/least-cost-path-with-multiple-sequential-points/m-p/446782#M6323</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-03-06T19:37:53Z</dc:date>
    </item>
  </channel>
</rss>

