<?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: Error with focal statistics in a custom script - says kernel file is not provided even though it is in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596761#M46718</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Jul 2020 21:56:55 GMT</pubDate>
    <dc:creator>ClaireAshcraft</dc:creator>
    <dc:date>2020-07-13T21:56:55Z</dc:date>
    <item>
      <title>Error with focal statistics in a custom script - says kernel file is not provided even though it is</title>
      <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596753#M46710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to code my own script (well, modify an old ArcInfo Workstation program to work in ArcGIS pro) and am running into problems. Part of the script involves doing focal statistics where I calculate the mean based on a basic 3x3 laplacian kernel (a .txt file I provide). However, this part of the script fails to run and I get error&amp;nbsp;010391 as described below. The issue is that I can't find any explanation for this. I double-checked the path to the kernel file and it's correct. The text file itself is CRLF. I can't find any online documentation on how the kernel should be formatted for ArcGIS, but I have it formatted the standard way. I have some experience with MatLab and C++ but no Python experience, so there might be an obvious answer I'm missing. What am I doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the section of code (this is my first post; if there's a code formatting button for GeoNet I can't find it, sorry):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;# Import system modules&lt;/SPAN&gt;&lt;BR /&gt;import &lt;SPAN style="color: #ff9900;"&gt;arcpy&lt;/SPAN&gt;&lt;BR /&gt;from &lt;SPAN style="color: #ff9900;"&gt;arcpy&lt;/SPAN&gt; import &lt;SPAN style="color: #ff9900;"&gt;env&lt;/SPAN&gt;&lt;BR /&gt;from &lt;SPAN style="color: #ff9900;"&gt;arcpy.sa&lt;/SPAN&gt; import &lt;SPAN style="color: #ff9900;"&gt;*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;#bring the parameters into the program&lt;/SPAN&gt;&lt;BR /&gt;classnumber = arcpy.GetParameter(0)&amp;nbsp;&lt;SPAN style="color: #ff0000;"&gt;#Used later in the program&lt;/SPAN&gt;&lt;BR /&gt;demoriginal = arcpy.GetParameter(1)&amp;nbsp;&lt;SPAN style="color: #ff0000;"&gt;#DEM raster&lt;/SPAN&gt;&lt;BR /&gt;laplacian = arcpy.GetParameter(2)&amp;nbsp;&lt;SPAN style="color: #ff0000;"&gt;#Laplacian filter text file&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;#turn the raster into a GRID format composite geodataset called "dem" so that focal statistics can be done on it&lt;/SPAN&gt;&lt;BR /&gt;dem = arcpy.CompositeBands_management(demoriginal, &lt;SPAN style="color: #00ff00;"&gt;"dem"&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;#making slope image&lt;/SPAN&gt;&lt;BR /&gt;simg = Slope(dem,"DEGREE")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;# making convex area image&lt;/SPAN&gt;&lt;BR /&gt;img1 = Con(FocalStatistics(dem,NbrWeight(laplacian),&lt;SPAN style="color: #00ff00;"&gt;"MEAN"&lt;/SPAN&gt;) &amp;gt; 0, 1, 0)&amp;nbsp;&amp;nbsp;&lt;SPAN style="color: #ff0000;"&gt;#This is the line that fails&lt;/SPAN&gt;&lt;BR /&gt;convex = focalmean (img1,circle,10)&lt;BR /&gt;delete(img1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(and so on)&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;Traceback (most recent call last):&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;File "C:\Users\User\Desktop\ArcGIS Files\GeographicClassification3\ProgramFiles\ACT.py", line 35, in &amp;lt;module&amp;gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;img1 = Con(FocalStatistics(dem,NbrWeight(laplacian),"MEAN") &amp;gt; 0, 1, 0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\sa\Functions.py", line 5486, in FocalStatistics&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;percentile_value)&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\sa\Utils.py", line 53, in swapper&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;result = wrapper(*args, **kwargs)&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\sa\Functions.py", line 5479, in Wrapper&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;percentile_value)&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\geoprocessing\_base.py", line 511, in &amp;lt;lambda&amp;gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;return lambda *args: val(*gp_fixargs(args, True))arcgisscripting.ExecuteError: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;ERROR 010391:&lt;/STRONG&gt;&lt;/SPAN&gt; Kernel file is not provided or does not exist.Failed to execute (FocalStatistics).&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;Failed to execute (Classification).&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;I attached the kernel file&amp;nbsp;but this is what it contains:&lt;/P&gt;&lt;P&gt;3 3&lt;BR /&gt;0 -1 0&lt;BR /&gt;-1 4 -1&lt;BR /&gt;0 -1 0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2020 17:19:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596753#M46710</guid>
      <dc:creator>ClaireAshcraft</dc:creator>
      <dc:date>2020-07-11T17:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error with focal statistics in a custom script - says kernel file is not provided even though it is</title>
      <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596754#M46711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/image-analyst/how-focal-statistics-works.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/image-analyst/how-focal-statistics-works.htm"&gt;How Focal Statistics works—Help | Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;your kernel format looks correct, however 'laplacian' needs to be defined as the full path to the *.txt kernel file.&lt;/P&gt;&lt;P&gt;r"c:\pathto\kernel.txt"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2020 18:34:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596754#M46711</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-07-11T18:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Error with focal statistics in a custom script - says kernel file is not provided even though it is</title>
      <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596755#M46712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Thanks for the response!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;EM&gt;laplacian = arcpy.GetParameter(2)&lt;/EM&gt; does return the full path to the kernel file. However, in double-checking I realized that one of the folders in my path has a space in it. I changed the path to one with no spaces and now get a (different) kernel error, whether I do&amp;nbsp;&lt;SPAN&gt;&lt;EM&gt;laplacian = arcpy.GetParameter(2)&lt;/EM&gt; or &lt;EM&gt;laplacian =&amp;nbsp;r"c:\pathto\kernel.txt"&lt;/EM&gt;&amp;nbsp;(with my own path, obviously):&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;Traceback (most recent call last):&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;File "C:\Users\User\Desktop\ArcGIS Files\GeographicClassification3\ProgramFiles\ACT.py", line 35, in &amp;lt;module&amp;gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;img1=FocalStatistics(dem,NbrWeight(laplacian),"MEAN")&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\sa\Functions.py", line 5486, in FocalStatistics&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;percentile_value)&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\sa\Utils.py", line 53, in swapper&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;result = wrapper(*args, **kwargs)&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\sa\Functions.py", line 5479, in Wrapper&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;percentile_value)&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\geoprocessing\_base.py", line 511, in &amp;lt;lambda&amp;gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;return lambda *args: val(*gp_fixargs(args, True))arcgisscripting.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;ExecuteError: &lt;SPAN class=""&gt;ERROR 010176:&lt;/SPAN&gt; Invalid neighborhood mask.Failed to execute (FocalStatistics).&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="color: #ff0000;"&gt;Failed to execute (Classification).&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d;"&gt;&lt;SPAN&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/tool-errors-and-warnings/010001-020000/tool-errors-and-warnings-10176-10200-010176.htm"&gt;This&lt;/A&gt; is the&amp;nbsp;description of that error. It says to "c&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;heck the documentation and make sure the neighborhood is being correctly defined."&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d;"&gt;&lt;SPAN&gt;Looking at the&amp;nbsp;&lt;A href="https://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/focal-statistics.htm"&gt;documentation for Focal Statistics&lt;/A&gt;&amp;nbsp;it says, "&lt;SPAN style="color: #4d4d4d; background-color: #fefefe;"&gt;The Irregular and Weight&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #4d4d4d; background-color: #fefefe; font-weight: bold;"&gt;Neighborhood&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; background-color: #fefefe;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;types require a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #4d4d4d; background-color: #fefefe; font-weight: bold;"&gt;Kernel file&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; background-color: #fefefe;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;be specified. Kernel files should have a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #4d4d4d; background-color: #fefefe; font-size: 14px;"&gt;.txt&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; background-color: #fefefe;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;file extension.&amp;nbsp;See the Irregular and Weight sections of&amp;nbsp;&lt;A href="https://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/how-focal-statistics-works.htm" style="color: #007ac2; text-decoration: none;"&gt;How Focal Statistics works&lt;/A&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for information on creating and using kernel files."&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN style="background-color: #fefefe; color: #4d4d4d;"&gt;&lt;SPAN&gt;If you click that second link and scroll down to&amp;nbsp;the documentation for Weight, it describes the kernel as basically being exactly like what I already have. So I still can't figure out why it won't accept&amp;nbsp;my file.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2020 19:11:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596755#M46712</guid>
      <dc:creator>ClaireAshcraft</dc:creator>
      <dc:date>2020-07-11T19:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error with focal statistics in a custom script - says kernel file is not provided even though it is</title>
      <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596756#M46713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sometimes a blank line at the end of a text file is not good, check for the extra blank line&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2020 20:50:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596756#M46713</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-07-11T20:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error with focal statistics in a custom script - says kernel file is not provided even though it is</title>
      <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596757#M46714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, it's got no extra blank line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2020 21:34:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596757#M46714</guid>
      <dc:creator>ClaireAshcraft</dc:creator>
      <dc:date>2020-07-11T21:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error with focal statistics in a custom script - says kernel file is not provided even though it is</title>
      <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596758#M46715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;from the depths of GeoNet&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/107851"&gt;Working with kernel files in arcpy: NbrIrregular bug&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="link-titled" href="https://community.esri.com/thread/48587?commentID=250669#comment" title="https://community.esri.com/message/250669?commentID=250669#comment-250669"&gt;https://community.esri.com/message/250669?commentID=250669#comment-250669&lt;/A&gt;&amp;nbsp; &amp;nbsp;spatial reference?&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/message/560740"&gt;https://community.esri.com/message/560740&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2020 23:08:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596758#M46715</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-07-11T23:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Error with focal statistics in a custom script - says kernel file is not provided even though it is</title>
      <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596759#M46716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the links!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First link: I tried both methods (using text representation as well as creating that separate script to write a kernel file, and then calling the kernel script within my original script) but got the same error both times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second link: My raster does have a spatial reference, unfortunately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Third link: When I try this it does the multiplications correctly, indicating that the python in general has no problem reading my kernel file even though Focal Statistics can't.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2020 17:07:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596759#M46716</guid>
      <dc:creator>ClaireAshcraft</dc:creator>
      <dc:date>2020-07-13T17:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error with focal statistics in a custom script - says kernel file is not provided even though it is</title>
      <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596760#M46717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nothing I have suggested has been helpful and I am out of ideas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2020 18:00:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596760#M46717</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-07-13T18:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error with focal statistics in a custom script - says kernel file is not provided even though it is</title>
      <link>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596761#M46718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2020 21:56:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-with-focal-statistics-in-a-custom-script/m-p/596761#M46718</guid>
      <dc:creator>ClaireAshcraft</dc:creator>
      <dc:date>2020-07-13T21:56:55Z</dc:date>
    </item>
  </channel>
</rss>

