<?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 000824: The tool is not licensed.  in arcpy.Contour_3d in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457747#M35947</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Curtis,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All the above is to make animate the contours generated using "time slider".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the process, I get 120 raster and get the contours of all, after using arcpy.Merge_management, integrated all into one and finally add the field time to use "time slider". I've done it but the process is very slow,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You know if there is another method to do the same and help me optimize time?, Already with other tools, I'll be pending comments.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Finally I need to animate the time, of the 120 contours&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gualberto&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Nov 2012 20:32:43 GMT</pubDate>
    <dc:creator>GualbertoHernández_Juárez</dc:creator>
    <dc:date>2012-11-20T20:32:43Z</dc:date>
    <item>
      <title>ERROR 000824: The tool is not licensed.  in arcpy.Contour_3d</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457743#M35943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am using "arcpy.Contour_3d" and get an error, and review in detail the parameters and apparently all is well I hope you can help me&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you very much&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;# -*- coding: utf-8 -*- # --------------------------------------------------------------------------- # test contours.py # Created on: 2012-11-16 14:51:29.00000 #&amp;nbsp;&amp;nbsp; (generated by ArcGIS/ModelBuilder) # Description:&amp;nbsp; # ---------------------------------------------------------------------------&amp;nbsp; # Import arcpy module import arcpy&amp;nbsp; # Check out any necessary licenses arcpy.CheckOutExtension("3D")&amp;nbsp;&amp;nbsp; # Local variables:&amp;nbsp; sde_SDE_time0__3_ = "Database Connections\\Coneccion local SDE.sde\\sde.SDE.time0" time1 = "Database Connections\\Coneccion local SDE.sde\\time1"&amp;nbsp;&amp;nbsp; # Process: Contour arcpy.Contour_3d(sde_SDE_time0__3_, time1, "2", "0", "1")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I get:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\ddd.py", line 3612, in Contour&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ExecuteError: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR 000824: The tool is not licensed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (Contour).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 19:01:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457743#M35943</guid>
      <dc:creator>GualbertoHernández_Juárez</dc:creator>
      <dc:date>2012-11-16T19:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.  in arcpy.Contour_3d</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457744#M35944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If the checkout fails, it doesn't generate an error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will see the result if you enter: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;print arcpy.CheckOutExtension("3D")&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See the example code in the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.1/index.html#//018v0000001n000000" rel="nofollow" target="_blank"&gt;help for CheckOutExtension&lt;/A&gt;&lt;SPAN&gt;-- it has a nice example of how to check whether the license was successfully acquired.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2012 00:21:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457744#M35944</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-11-17T00:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.  in arcpy.Contour_3d</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457745#M35945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Curtis,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Effectively I have not the license "3D Analyst" available.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Use spatial analysis&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gualberto&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2012 09:03:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457745#M35945</guid>
      <dc:creator>GualbertoHernández_Juárez</dc:creator>
      <dc:date>2012-11-17T09:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.  in arcpy.Contour_3d</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457746#M35946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;De nada.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For the record, this is exactly the same tool, licensed under Spatial Analyst or 3D Analyst.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2012 19:16:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457746#M35946</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-11-17T19:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.  in arcpy.Contour_3d</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457747#M35947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Curtis,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All the above is to make animate the contours generated using "time slider".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the process, I get 120 raster and get the contours of all, after using arcpy.Merge_management, integrated all into one and finally add the field time to use "time slider". I've done it but the process is very slow,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You know if there is another method to do the same and help me optimize time?, Already with other tools, I'll be pending comments.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Finally I need to animate the time, of the 120 contours&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gualberto&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2012 20:32:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed-nbsp-in/m-p/457747#M35947</guid>
      <dc:creator>GualbertoHernández_Juárez</dc:creator>
      <dc:date>2012-11-20T20:32:43Z</dc:date>
    </item>
  </channel>
</rss>

