<?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 Power parameter and IDW in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/power-parameter-and-idw/m-p/469489#M6731</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am working on an analysis that involves polygons and points with values and I am using IDW to predict the values of pixels in between.&amp;nbsp; I need the values of the points to have a 50% impact on the values of the surrounding pixels when they are 3 miles away from the source data and a 0% impact when they are 5 miles away.&amp;nbsp; I am wondering if anyone knows of a formula I could use to determine what power value would get me the results I am looking for.&amp;nbsp; I'm basing this slightly off of a graph that is on one of the help pages for the IDW tool, a copy of which is attached.&amp;nbsp; I'm hoping that there is a formula that would generate those different curves.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this possible or does anyone have any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Mar 2014 03:31:18 GMT</pubDate>
    <dc:creator>BillGaertner</dc:creator>
    <dc:date>2014-03-04T03:31:18Z</dc:date>
    <item>
      <title>Power parameter and IDW</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/power-parameter-and-idw/m-p/469489#M6731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am working on an analysis that involves polygons and points with values and I am using IDW to predict the values of pixels in between.&amp;nbsp; I need the values of the points to have a 50% impact on the values of the surrounding pixels when they are 3 miles away from the source data and a 0% impact when they are 5 miles away.&amp;nbsp; I am wondering if anyone knows of a formula I could use to determine what power value would get me the results I am looking for.&amp;nbsp; I'm basing this slightly off of a graph that is on one of the help pages for the IDW tool, a copy of which is attached.&amp;nbsp; I'm hoping that there is a formula that would generate those different curves.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this possible or does anyone have any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 03:31:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/power-parameter-and-idw/m-p/469489#M6731</guid>
      <dc:creator>BillGaertner</dc:creator>
      <dc:date>2014-03-04T03:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Power parameter and IDW</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/power-parameter-and-idw/m-p/469490#M6732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There are two issues here: the weight and the maximum search distance. The search distance is a parameter to the IDW tool.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As for the weights, here's how it's done using the simple IDW formula of inverse-distance-squared weight and setting it to 0.5:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;0.5 = 1 / x&lt;SUP&gt;2&lt;/SUP&gt;
x&lt;SUP&gt;2&lt;/SUP&gt; = 2
x = 2&lt;SUP&gt;0.5&lt;/SUP&gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a check in the Python window to make sure I got that right:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;gt;&amp;gt;&amp;gt; 100 * ( 1 / ((2 ** 0.5) ** 2))
49.999999999999986
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Remember these weights are *relative*: if two points are equal distance they both get 50% each weight, if only one point is in distance, it gets 100% weight.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:48:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/power-parameter-and-idw/m-p/469490#M6732</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-12-11T20:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Power parameter and IDW</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/power-parameter-and-idw/m-p/469491#M6733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;There are two issues here: the weight and the maximum search distance. The search distance is a parameter to the IDW tool.&lt;BR /&gt;&lt;BR /&gt;As for the weights, here's how it's done using the simple IDW formula of inverse-distance-squared weight and setting it to 0.5:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;0.5 = 1 / x&lt;SUP&gt;2&lt;/SUP&gt;
x&lt;SUP&gt;2&lt;/SUP&gt; = 2
x = 2&lt;SUP&gt;0.5&lt;/SUP&gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Here's a check in the Python window to make sure I got that right:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;gt;&amp;gt;&amp;gt; 100 * ( 1 / ((2 ** 0.5) ** 2))
49.999999999999986
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Remember these weights are *relative*: if two points are equal distance they both get 50% each weight, if only one point is in distance, it gets 100% weight.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Curtis, thanks for the response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I have used search distance, it always seems to result in a less smooth raster.&amp;nbsp; I was hoping to use the power parameter in a similar way and specify a distance at which the source values have a 0% weight on the value of the pixels.&amp;nbsp; It might be easier if I forget about the 50% weight at a certain distance and just focus on the 0% weight at a certain distance.&amp;nbsp; How could you use a formula, like the one you posted, to specify that a source value has a 0% weight on a pixel once it gets 5 miles away?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:48:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/power-parameter-and-idw/m-p/469491#M6733</guid>
      <dc:creator>BillGaertner</dc:creator>
      <dc:date>2021-12-11T20:48:08Z</dc:date>
    </item>
  </channel>
</rss>

