<?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: The tool is not licensed in ArcGIS Hub Questions</title>
    <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363789#M1841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Checking whether Spatial is available is the first step, next you need to call &lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/checkoutextension.htm" title="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/checkoutextension.htm"&gt;CheckOutExtension—ArcMap | Documentation&lt;/A&gt; .&amp;nbsp; The example code in the documentation gives you the steps you need to follow.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Nov 2020 18:04:02 GMT</pubDate>
    <dc:creator>JoshuaBixby</dc:creator>
    <dc:date>2020-11-10T18:04:02Z</dc:date>
    <item>
      <title>The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363781#M1833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I am trying to run the following script from py 2.7 IDLE that comes with ArcMap 10.7.1. When I try to run the following script:&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;import&lt;/SPAN&gt; os
&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;
&lt;SPAN class="comment token"&gt;#Set the evironment settings&lt;/SPAN&gt;
arcpy&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:\Spring2020\VIC\PCA_Reclass_2004\PCA_Reclass_04'&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;#Load the rasters&lt;/SPAN&gt;
folder &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'D:\Spring2020\VIC\PCA_Reclass_2004\PCA_Reclass_04'&lt;/SPAN&gt;
rasters &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListRasters&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"*"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"TIF"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; rasters
inpoly &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'D:\Spring2020\VIC\EB_Correct_File_ArcGIS\VIC.shp'&lt;/SPAN&gt;
out &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'D:\Spring2020\VIC\EB_Correct_File_ArcGIS'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;field&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;name &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; field &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFields&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inpoly&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
cursor&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inpoly&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'GRID_CODE'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; cursor
&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inpoly&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'GRID_CODE'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
 &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;#print row&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; raster &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; rasters&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    out &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;out&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; raster &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;".dbf"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    outT&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ZonalStatisticsAsTable&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inpoly&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"GRID_CODE"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;raster&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; out&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"DATA"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'MEAN'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 

I get the following error &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;even though I have the license &lt;SPAN class="operator token"&gt;and&lt;/SPAN&gt; can use the tool &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; ArcMap&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
raceback &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;most recent call last&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
 File &lt;SPAN class="string token"&gt;"D:/Spring2020/VIC/zonal_stats_Table.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;21&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;module&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
 outT&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ZonalStatisticsAsTable&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inpoly&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"GRID_CODE"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;raster&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; out&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"DATA"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'MEAN'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
 File &lt;SPAN class="string token"&gt;"C:\Program Files (x86)\ArcGIS\Desktop10.7\ArcPy\arcpy\geoprocessing\_base.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;510&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&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;
 &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;lambda&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;args&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; val&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;gp_fixargs&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;args&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
ExecuteError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Failed to execute&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt; Parameters are &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; valid&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
ERROR &lt;SPAN class="number token"&gt;000824&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; The tool &lt;SPAN class="keyword token"&gt;is&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; licensed&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
Failed to execute &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;ZonalStatisticsAsTable&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:57:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363781#M1833</guid>
      <dc:creator>Arthur_Morgan</dc:creator>
      <dc:date>2021-12-11T16:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363782#M1834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried checking out a Spatial Analyst license to use the tool? &lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/checkoutextension.htm" title="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/checkoutextension.htm"&gt;CheckOutExtension—ArcMap | Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 02:38:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363782#M1834</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-11-10T02:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363783#M1835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it says Z&lt;SPAN&gt;onal Statistics As Table is unavailable&lt;/SPAN&gt;, I tried the following:&lt;/P&gt;&lt;P&gt;if arcpy.CheckExtension("ZonalStatisticsAsTable")=="Available":&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;arcpy.CheckOutExtension("ZonalStatisticsAsTable"&lt;/P&gt;&lt;P&gt;else:&lt;/P&gt;&lt;P&gt;print "Zonal Statistics As Table is unavailable"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 03:23:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363783#M1835</guid>
      <dc:creator>Arthur_Morgan</dc:creator>
      <dc:date>2020-11-10T03:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363784#M1836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But this is not be happening as I have the license and I even use the tool in ArcMap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 05:20:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363784#M1836</guid>
      <dc:creator>Arthur_Morgan</dc:creator>
      <dc:date>2020-11-10T05:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363785#M1837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ZonalStatistics isn't a extension, it is a tool, and CheckOutExtension is for licensing extensions.&amp;nbsp; You need to know what license is required for your tool, which is why I asked about Spatial Analyst (use "Spatial") because that is the license you will need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 13:30:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363785#M1837</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-11-10T13:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363786#M1838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried the following and based on the print, it does say that Spatial Analyst is available.&lt;/P&gt;&lt;P&gt;#Check the license&lt;BR /&gt;if arcpy.CheckExtension("Spatial")=="Available":&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;print "Spatial is available"&lt;BR /&gt;else:&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;print "Zonal Statistics As Table is unavailable"&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Output&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Spatial is available&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 17:45:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363786#M1838</guid>
      <dc:creator>Arthur_Morgan</dc:creator>
      <dc:date>2020-11-10T17:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363787#M1839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Saad!&amp;nbsp; This is far from my area of expertise but I think you may want to actually include a line within your script to checkout the license.&amp;nbsp; A colleague and I have seen this error before and it looks like including a line to check out the license (for example. arcpy.CheckOutExtension("Spatial") may be needed.&amp;nbsp; Hopefully that helps guide you along to the right path!&amp;nbsp; Perhaps others can help chime in.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 17:52:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363787#M1839</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-11-10T17:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363788#M1840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Will, thank you for your response, and as you suggested, I did the exact same thing and it prints Spatial is available, please see below:&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;#Check the license&lt;BR /&gt;if arcpy.CheckExtension("Spatial")=="Available":&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;print "Spatial is available"&lt;BR /&gt;else:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;print "Zonal Statistics As Table is unavailable"&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold;"&gt;Output&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Spatial is available&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 18:00:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363788#M1840</guid>
      <dc:creator>Arthur_Morgan</dc:creator>
      <dc:date>2020-11-10T18:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363789#M1841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Checking whether Spatial is available is the first step, next you need to call &lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/checkoutextension.htm" title="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/checkoutextension.htm"&gt;CheckOutExtension—ArcMap | Documentation&lt;/A&gt; .&amp;nbsp; The example code in the documentation gives you the steps you need to follow.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 18:04:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363789#M1841</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-11-10T18:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: The tool is not licensed</title>
      <link>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363790#M1842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried the steps as mentioned in the mentioned and it worked, thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 19:13:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-hub-questions/the-tool-is-not-licensed/m-p/363790#M1842</guid>
      <dc:creator>Arthur_Morgan</dc:creator>
      <dc:date>2020-11-10T19:13:35Z</dc:date>
    </item>
  </channel>
</rss>

