<?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: perform IDW interpolation to select multiple Z field from attribute table using ArcPy in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172160#M13265</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/xander_bakker"&gt;xander_bakker&lt;/A&gt;‌. I think so Kriging is not to be solution. I ran the code by 0.05 cell size. but i think its not probably the solution, I keep continue my research on this subject until resolve the issues. Thank you very much for you kind cooperation. &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Aug 2016 02:46:21 GMT</pubDate>
    <dc:creator>ShouvikJha</dc:creator>
    <dc:date>2016-08-31T02:46:21Z</dc:date>
    <item>
      <title>perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172123#M13228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #242729; border: 0px; margin: 0px 0px 1em; text-align: justify; background-color: rgba(248, 248, 248, 0.6);"&gt;I have 12 point feature datasets for different month. I want to perform IDW interpolation.&lt;/P&gt;&lt;P style="color: #242729; border: 0px; margin: 0px 0px 1em; text-align: justify; background-color: rgba(248, 248, 248, 0.6);"&gt;I have created the python code but its taking only one "Z" field for different month feature datasets from the attribute. Below I have mentioned the code. How to assign here multiple Z field from each month folder (JANUARY, FEBRUARY......DECEMBER).&lt;/P&gt;&lt;P style="color: #242729; border: 0px; margin: 0px 0px 1em; text-align: justify; background-color: rgba(248, 248, 248, 0.6);"&gt;Point feature class from different month folder (e.g. For January Merged_001, for FEBRUARY Merged_002.......for DECEMBER Merged_012 ) and want to perform IDW interpolation and save it as on same month folder as it Z field name (Max_Temper, Min_Temper, Precipitatat, Wind, Relative_H, Solar) with month (e.g for January 001_Max_Temper, 001_Min_Temper, 001_Precipitatat, 001_Wind, 001_Relative_H, 001_Solar).&lt;/P&gt;&lt;P style="color: #242729; border: 0px; margin: 0px 0px 1em; text-align: justify; background-color: rgba(248, 248, 248, 0.6);"&gt;After Whatever Solar raster for different month (for January 001_Solar....for DECEMBER 012_Solar) we will get, I want to do some calculation (001_Solar * 30) *0.5 and save it 001_sr ........012_sr in Month wise folder.&lt;/P&gt;&lt;P style="color: #242729; border: 0px; margin: 0px 0px 1em; text-align: justify; background-color: rgba(248, 248, 248, 0.6);"&gt;Below i have attached Point shapefile also for reference purpose&amp;nbsp;&lt;/P&gt;&lt;P style="color: #242729; border: 0px; margin: 0px 0px 1em; text-align: justify; background-color: rgba(248, 248, 248, 0.6);"&gt;Here is my code.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;import arcpy
from arcpy import env
from arcpy.sa import *
arcpy.env.parallelProcessingFactor = "100%"
arcpy.env.overwriteOutput = True
# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")
env.workspace = "D:\SWAT-WEATHER-DATA2\APRIL"
# Set local variables
inPointFeatures = "D:\SWAT-WEATHER-DATA2\APRIL\Merged_004.shp"
zField = "Min_Temper" #Z_Filed = Max_Temper, Min_Temper, Precipitatat, Wind, Relative_H, Solar
cellSize = 0.002298707671
power = 2
searchRadius = RadiusVariable(10, 150000)
#Mask region of interest
mask="D:\Gujarta Shape file\GUJARATSTATE.shp"

# Execute IDW
outIDW = Idw(inPointFeatures, zField, cellSize, power, searchRadius)
# Execute Mask
IDWMASk = ExtractByMask(outIDW, mask)
# Save output, except Solar Radiation raster
IDWMASk.save("004_Min_Temp.tif")
# 004_Max_Temp.tif, 004_Min_Temp.tif....Solar
#Only for Solar Radiation raster
#PAR = (IDWMASk * 30) * 0.5
#Save output, Only for Solar Radiation raster
#PAR.save("003_sr.tif")
#print done
print 'done'‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:54:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172123#M13228</guid>
      <dc:creator>ShouvikJha</dc:creator>
      <dc:date>2021-12-11T08:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172124#M13229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just a side note... you file paths need to be in raw format, at least (r'c:\path' ), they shouldn't contain spaces nor any character other than letters, numbers and the underscore... dashes can be problematic. &amp;nbsp;The rules regarding grid workspaces are equally onerous, but I will leave that for a bit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Aug 2016 18:36:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172124#M13229</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-21T18:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172125#M13230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I downloaded the shapefile that&amp;nbsp;contains the data for month 004 (April), but I noticed that you have about 514 point locations and each point location contains data for each day of the month. In this case you have 30 points at each location. When you do an IDW interpolation these values will overlay and also may make the interpolation process slower than necessary. You may want to consider summarize the data (average min and max temp, etc) for each unique location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also the distribution&amp;nbsp;makes me think that the data originally comes from a raster format.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/217190_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;Interpolating this data as if they were individual stations, doesn't feel right. Perhaps converting them to raster (after the aggregation per location) with one location per pixel, would be a better idea. If you require a more detailed resolution you could use the &lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/resample.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/resample.htm"&gt;Resample—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;tool, but remember that you really don't have more detail then those input points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The get an example of how to process and calculate&amp;nbsp;based on lists of data, you could have a look at this thread:&amp;nbsp;&lt;A href="https://community.esri.com/thread/181603"&gt;Calculate list of raster from two different subfolder using ArcPy&lt;/A&gt;&amp;nbsp;where some examples are provided.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Aug 2016 20:04:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172125#M13230</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-08-21T20:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172126#M13231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3100"&gt;Xander Bakker&lt;/A&gt;‌. Thank you. the point data comes from model generated output and they provides the datasets in csv format.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't understand, how to perform (&lt;SPAN style="background-color: #ffffff;"&gt;after the aggregation per location &lt;SPAN&gt;with one location per pixel&lt;/SPAN&gt;&lt;/SPAN&gt;)&amp;nbsp;on those data to calculate Mean value of each location for different parameters.&amp;nbsp;My kind request, please guide me to the task with accurately. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding interpolation daily data into a single pixel, Arc GIS has the default setting in Envs Setting: Geo-statistical Analysis : &lt;STRONG&gt;Coincident Points : Mean&lt;/STRONG&gt;. So during interpolation i think its calculate the Mean value of different parameter for each location to crate a single pixel from daily data. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i use the Arc GIS IDW tool for performing IDW then its taking some time but when i run the code in pyscripter, its not taking much time to perform&amp;nbsp;interpolation. &amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 09:00:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172126#M13231</guid>
      <dc:creator>ShouvikJha</dc:creator>
      <dc:date>2016-08-22T09:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172127#M13232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander correctly points out that there is no need for interpolation since the input areal units and their output values have been previously defined from the source program... they just happen to be represented by points, but they reflect an area.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Perhaps converting them to raster (after the aggregation per location) with one location per pixel, would be a better idea&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;If you need a finer resolution, then that should be done in the source program. &amp;nbsp;Interpolation of the data you have is not necessary or appropriate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 09:32:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172127#M13232</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-22T09:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172128#M13233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/xander_bakker"&gt;xander_bakker&lt;/A&gt;‌ &lt;A href="https://community.esri.com/people/Dan_Patterson"&gt;Dan_Patterson&lt;/A&gt;‌. Thank you for your kind cooperation.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 15:35:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172128#M13233</guid>
      <dc:creator>ShouvikJha</dc:creator>
      <dc:date>2016-08-22T15:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172129#M13234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To convert the points to raster, you would need to do a little fiddling with the point spacing and the origin.&lt;/P&gt;&lt;P&gt;Inputs to the Point to Raster tool, you would have to specify in the environments the exact cellsize of the output (equal to the spacing of the points) and also an extent which was exactly 1/2 of a cellsize offset to the west. So, in the output raster all the input points were at the centre of each output pixel.&lt;/P&gt;&lt;P&gt;But if you just wanted a quick picture of these points, I don't think using something like Natural neighbour interpolator would actually mess up the input data so much. And would save you a whole lot of messing about.&lt;/P&gt;&lt;P&gt;Perhaps&amp;nbsp; &lt;A href="https://community.esri.com/people/Dan_Patterson"&gt;Dan_Patterson&lt;/A&gt; would like to comment on the implications of this interp....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 16:01:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172129#M13234</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-08-22T16:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172130#M13235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One would have to use the same interpolator as that used to generate the points in the first place.&amp;nbsp; There is no assumption given that the actual points represent just that, but could be a representation of an interpolation in the first place.&amp;nbsp; I always get a bit squimish about interpolating interpolations which might have been interpolated in the first place, hence, my comment about going back to source and do it again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 16:16:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172130#M13235</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-22T16:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172131#M13236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I get time, I might do some testing of interpolating an interpolation....&lt;/P&gt;&lt;P&gt;Will feed back here..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 06:12:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172131#M13236</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-08-23T06:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172132#M13237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had a quick look at the IDW interpolation and if I use the following settings.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/217387_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get this result&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/217394_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;The individual points are clearly visible and generate an undesired effect. To reduce this effect you can increase the search distance:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/217395_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;It becomes a little more smoother, but still the individual points are there. When the power is reduced to one the effect is this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/217396_pastedImage_5.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you convert the points to raster with the "original" resolution you get this (hardly appealing) result:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-6 jive-image" src="https://community.esri.com/legacyfs/online/217397_pastedImage_6.png" /&gt;&lt;/P&gt;&lt;P&gt;If you resample this using Cubic Spline you will get this result:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-7 jive-image" src="https://community.esri.com/legacyfs/online/217398_pastedImage_7.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The question is;&amp;nbsp;which one is closer to the "truth"...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 15:44:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172132#M13237</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-08-23T15:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172133#M13238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&amp;nbsp;leaving philosophy out of it... can one assume the original points represent the truth? and what errors does using that data introduce in itself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 17:49:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172133#M13238</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-23T17:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172134#M13239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the "truth".&lt;/P&gt;&lt;P&gt;Interpolation is interpolation. "Estimating", "predicting", values which are not actually there in your original data but putting some mathematical function through the input points to create a continuous surface raster output. Lots of stuff in the middle. IDW, NN, Splines, even Kriging&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/cry.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 19:30:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172134#M13239</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-08-23T19:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172135#M13240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By the way, thanks&amp;nbsp;&lt;A href="https://community.esri.com/people/xander_bakker"&gt;xander_bakker&lt;/A&gt; for giving us some nice pictures of the various "interpolations"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 19:32:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172135#M13240</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-08-23T19:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172136#M13241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're welcome, but I'm sure there are many options to explore that will yield&amp;nbsp;different results and there are many interpolations methods that will yield "better" results.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also,&amp;nbsp;very true your remark about estimating and predicting. If possible it is preferable to get back to the source (meteorological stations?). Hard to tell what kind of processes have been applied and on what data to obtain the results.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 20:33:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172136#M13241</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-08-23T20:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172137#M13242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will second that... especially it is climatalogical data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 20:39:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172137#M13242</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-23T20:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172138#M13243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Earlier i had post the issues of taking multiple Z value to perfrom IDW. From IDW interpolation its seems to be not much accurate. I am trying to execute Universal Kriging (LINEARDRIFT). I have written one code to perform kriging, but its not running, And i am confused to select some variable for &lt;SPAN&gt;Kriging. Below i have attached point shape file, which i am performing Kriging. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Error massage from below code while performing Kriging&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Message File Name Line Position
Traceback
 &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;module&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; D&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;\Arc&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;GIS&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;Python&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;Script\KRIGING_PAR1&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;py &lt;SPAN class="number token"&gt;31&lt;/SPAN&gt;
 Kriging C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;\Program Files\ArcGIS\Desktop10&lt;SPAN class="number token"&gt;.1&lt;/SPAN&gt;\arcpy\arcpy\sa\Functions&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;py &lt;SPAN class="number token"&gt;2405&lt;/SPAN&gt;
 swapper C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;\Program Files\ArcGIS\Desktop10&lt;SPAN class="number token"&gt;.1&lt;/SPAN&gt;\arcpy\arcpy\sa\Utils&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;py &lt;SPAN class="number token"&gt;47&lt;/SPAN&gt;
 wrapper C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;\Program Files\ArcGIS\Desktop10&lt;SPAN class="number token"&gt;.1&lt;/SPAN&gt;\arcpy\arcpy\sa\Functions&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;py &lt;SPAN class="number token"&gt;2397&lt;/SPAN&gt;
 &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;lambda&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;\Program Files\ArcGIS\Desktop10&lt;SPAN class="number token"&gt;.1&lt;/SPAN&gt;\arcpy\arcpy\geoprocessing\_base&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;py &lt;SPAN class="number token"&gt;484&lt;/SPAN&gt;
RuntimeError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Object&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Error &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; executing tool‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;Below is the code&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; env
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sa &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;parallelProcessingFactor &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"100%"&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overwriteOutput &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Check out the ArcGIS Spatial Analyst extension license&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CheckOutExtension&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Spatial"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"D:\SWAT-WEATHER-DATA"&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Set local variables&lt;/SPAN&gt;
inPointFeatures &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"D:\SWAT-WEATHER-DATA\SELECTED-EX-MERGE.shp"&lt;/SPAN&gt;

zFields &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Max_Temper"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Min_Temper"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Precipitat"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Wind"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Relative_H"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Solar"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#Kriging Veriable&lt;/SPAN&gt;
cellSize &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.002298707671&lt;/SPAN&gt;
lagSize &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.5780481172534&lt;/SPAN&gt;
majorRange &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;6&lt;/SPAN&gt;
partialSill &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;3.304292110&lt;/SPAN&gt;
nugget &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.002701348&lt;/SPAN&gt;
kRadius &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; RadiusFixed&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;20000&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#Mask region of interest&lt;/SPAN&gt;
mask&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"D:\Gujarta Shape file\GUJARATSTATE.shp"&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Execute Kriging&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; zField &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; zFields&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; kModelUniversalObj &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; KrigingModelUniversal&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"LINEARDRIFT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; lagSize&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; majorRange&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; partialSill&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; nugget&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; OutKriging &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Kriging&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inPointFeatures&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; zField&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; kModelUniversalObj&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; kRadius&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# Execute Mask&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;#IDWMASk = ExtractByMask(outIDW, mask)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; IDWKrig &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; ExtractByMask&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;OutKriging&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; mask&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; zField &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Solar"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# Save output, except Solar Radiation raster&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IDWKrig&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;save&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"012_{}.tif"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;zField&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;#Only for Solar Radiation raster&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PAR &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;IDWKrig &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;30&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.5&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;#Save output, Only for Solar Radiation raster&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PAR&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;save&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"012_{}.tif"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;zField&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#print done&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'done'&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:54:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172138#M13243</guid>
      <dc:creator>ShouvikJha</dc:creator>
      <dc:date>2021-12-11T08:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172139#M13244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3100"&gt;Xander Bakker&lt;/A&gt;‌ &lt;A href="https://community.esri.com/migrated-users/3116"&gt;Dan Patterson&lt;/A&gt;‌. Several researcher has been tested the&amp;nbsp;issue of How effectively different interpolation techniques can predict the missing value &amp;nbsp;based on known value, they found Kriging is working effectively to predict the missing value. And its very close to the observation. Thank you.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 11:20:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172139#M13244</guid>
      <dc:creator>ShouvikJha</dc:creator>
      <dc:date>2016-08-30T11:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172140#M13245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;lets rule out potential sources of error first&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;file paths need raw format ie &amp;nbsp;r":\c:\mypath" ... note the r&lt;/LI&gt;&lt;LI&gt;spaces are almost certain failure&lt;/LI&gt;&lt;LI&gt;dashes and other undesireables in the paths... like - dashes&lt;/LI&gt;&lt;LI&gt;indentation.... copy the code open up syntax highlighting, select python... then paste try using 4 spaces per indent level (we have blog posts on this issue... read them)&lt;/LI&gt;&lt;LI&gt;the input variables to kriging were derived appropriately and reflect the characteristics of the inputs? &amp;nbsp;I can't test...&lt;/LI&gt;&lt;LI&gt;put in print statements to insure the input and output names are correct&lt;/LI&gt;&lt;LI&gt;check parallel processing factor, 100% as a string? or 100 as a number... don't have time to check&lt;/LI&gt;&lt;LI&gt;line 31 hmm off hand, doesn't like the mask (I think)&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 11:36:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172140#M13245</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-30T11:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172141#M13246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3116"&gt;Dan Patterson&lt;/A&gt;‌. Thank you for the suggestions.. Regarding&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;indentation issues with my posted code i don't know why&amp;nbsp;&lt;SPAN&gt;indentation &amp;nbsp;occurring even i posted&amp;nbsp;&amp;nbsp;code very carefully with&amp;nbsp;syntax highlighting.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 11:59:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172141#M13246</guid>
      <dc:creator>ShouvikJha</dc:creator>
      <dc:date>2016-08-30T11:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: perform IDW interpolation to select multiple Z field from attribute table using ArcPy</title>
      <link>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172142#M13247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&amp;nbsp;&lt;A href="https://community.esri.com/blogs/dan_patterson/2016/08/14/script-formatting"&gt;/blogs/dan_patterson/2016/08/14/script-formatting&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 12:06:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/perform-idw-interpolation-to-select-multiple-z/m-p/172142#M13247</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-30T12:06:10Z</dc:date>
    </item>
  </channel>
</rss>

