<?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: Calculate average values from observations within a distance weighted by the square of the inverse distance in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383707#M5387</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is fixed at 100km radius for every county centroid. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jun 2016 13:25:57 GMT</pubDate>
    <dc:creator>ZHIZUO</dc:creator>
    <dc:date>2016-06-03T13:25:57Z</dc:date>
    <item>
      <title>Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383699#M5379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I have a shape file for U.S. county centroid, and another shape file for temperature point observations across the U.S. &lt;/P&gt;&lt;P&gt;I'd like to calculate the average temperature for each of the county centroid, from the temperature observations within a certain distance of the centroid, weighted by the square of the inverse distance. Could anyone let me know which tool(s) should I use to get this outcome? Thanks very much in advance. &lt;/P&gt;&lt;P&gt;Alec &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 05:54:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383699#M5379</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-03T05:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383700#M5380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"weighted by the square of the inverse distance", distance to / from what?&lt;/P&gt;&lt;P&gt;Wouldn't just a simple IDW interpolation of the temperature points, then get the average for each county be good enough?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 07:16:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383700#M5380</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-06-03T07:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383701#M5381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;besides the math issue trying to obtain county level information from country level data is a very poor mix of data source scale.&amp;nbsp; Have you explored the possibility that data may be available at the county level, or at worse, the state level?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 08:02:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383701#M5381</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-06-03T08:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383702#M5382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do that with model builder,&lt;/P&gt;&lt;P&gt;Just add two&amp;nbsp; fields in U.S. county centroid Feature class, the first field you will calculate a certain distance (weighted by the square of the inverse distance).the second field for average temperature values but you will let that field Null&lt;/P&gt;&lt;P&gt;then run buffer tool using the distance field.&lt;/P&gt;&lt;P&gt;select by location for all temperature point observations within each polygon&lt;/P&gt;&lt;P&gt;use summary statistics tool to get average &lt;/P&gt;&lt;P&gt;get this value and make field calculate in the second field that you created&lt;/P&gt;&lt;P&gt;you will use iteration selection, to do that for each polygon buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 09:59:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383702#M5382</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-06-03T09:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383703#M5383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neil, it is distance from a county centroid to any temperature point that is within a certain distance of the centroid, say 100 kilometres. I think IDW interpolation creates a raster layer. Then zonal statistics could get an average value for a county. But this is still different from what I intend to do. Thank you for your reply. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 12:28:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383703#M5383</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-03T12:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383704#M5384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan, thank you for your reply. I am using temperature as an example. I also need to get many other variables. But there is no available county level data.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 12:31:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383704#M5384</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-03T12:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383705#M5385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Abdullah, your suggestion is very good. I am new to GIS so need to explore a bit how to use model builder to get this done. &lt;/P&gt;&lt;P&gt;But for the first distance field, what should be entered at first? I am not sure what a certain distance means. I will need all the temperature points within 100kms of a county centroid. Does it mean the first field needs to be 1/10000? &lt;/P&gt;&lt;P&gt;Thanks again for your reply. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 12:38:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383705#M5385</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-03T12:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383706#M5386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the distance 100 km for all centroid county or it is varies ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 13:01:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383706#M5386</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-06-03T13:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383707#M5387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is fixed at 100km radius for every county centroid. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 13:25:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383707#M5387</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-03T13:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383708#M5388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;very good you will not need to add two fields &lt;/P&gt;&lt;P&gt;you will create one field only in County centroid feature for ( average temperature)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I will create the model , and I will attach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 13:46:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383708#M5388</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-06-03T13:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383709#M5389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is very much appreciated. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 14:18:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383709#M5389</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-03T14:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383710#M5390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The model is ready.&lt;/P&gt;&lt;P&gt;Just you should add field for average temperature to county centroid shape file before use the model.&lt;/P&gt;&lt;P&gt;you can download the model in attachment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the picture below for model design&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="206807" alt="Export Graphic.png" class="image-1 jive-image" src="/legacyfs/online/206807_Export Graphic.png" style="width: 620px; height: 292px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 15:38:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383710#M5390</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-06-03T15:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383711#M5391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdullah, thank you so much for this. I will try this next Monday. Will let you know how it goes. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2016 08:16:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383711#M5391</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-04T08:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383712#M5392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will find two model&lt;/P&gt;&lt;P&gt;First for none weighted Just( mean temperature)&lt;/P&gt;&lt;P&gt;Second for weighted by the square of the inverse distance with the following equation:&lt;/P&gt;&lt;P&gt;&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; Sqr (1 / Distance ) * temperature value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 115%; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: Arial; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-EG;"&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/206839_pastedImage_1.png" style="width: 416px; height: 113px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 115%; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: Arial; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-EG;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2016 17:02:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383712#M5392</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-06-04T17:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383713#M5393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the model is working. It has been a few hours and it is still running. I have over 4000 temperature points and over 3000 county centroids. This is probably why it takes so long. &lt;/P&gt;&lt;P&gt;And just to make sure, the second is weighted by the inverse of&amp;nbsp; distance squared -- (1/distance*distance), not the inverse of square root of distance -- 1/sqrt(distance), right? I saw you had them both above. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 10:29:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383713#M5393</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-06T10:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383714#M5394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The number of temperature points will not cause any problem, but 3000 county centroid is mean 3000 iterations in model.&lt;/P&gt;&lt;P&gt;and it will take long time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the two equation above is same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first equation for VB in field calculator and it give the same result of the second manual equation&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want other one please write it in manual form . thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 20:30:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383714#M5394</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-06-06T20:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383715#M5395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the confusion is arising because the thread title says ... square of the inverse distance... whereas it appears he wants based upon inverse distance squared, perhaps the desired incarnation needs to be specified.&amp;nbsp; For some variants... you can add your own&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; import math
&amp;gt;&amp;gt;&amp;gt; distance = 4
&amp;gt;&amp;gt;&amp;gt; 1.0/(distance*distance)&amp;nbsp;&amp;nbsp; # inverse distance squared
0.0625
&amp;gt;&amp;gt;&amp;gt; math.sqrt(1.0/distance)&amp;nbsp;&amp;nbsp; # square root of the inverse distance
0.5
&amp;gt;&amp;gt;&amp;gt; math.pow((1.0/distance),2) # alternate
0.0625
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:39:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383715#M5395</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-11T17:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383716#M5396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay, I think the weighting in Abdullah's model is not what I meant then. I wanted to use either row 03 or row 07 in Dan's response. Could you let me know how to edit the model? Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2016 02:02:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383716#M5396</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-07T02:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383717#M5397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I updated the model&amp;nbsp; as row 03 in Dan reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="207028" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/207028_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;I think that what you want, isn't that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can download it in attachments.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2016 16:04:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383717#M5397</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-06-07T16:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate average values from observations within a distance weighted by the square of the inverse distance</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383718#M5398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much! Yes, this is what I want. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 00:27:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/calculate-average-values-from-observations-within/m-p/383718#M5398</guid>
      <dc:creator>ZHIZUO</dc:creator>
      <dc:date>2016-06-08T00:27:05Z</dc:date>
    </item>
  </channel>
</rss>

