<?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: is reclassify from the spatial analyst toolset available at the python command li in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654051#M50928</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The sa toolbox in arcpy behaves slightly different than other tools to support the Raster object and map algebra natively.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Aug 2011 18:34:36 GMT</pubDate>
    <dc:creator>JasonScheirer</dc:creator>
    <dc:date>2011-08-26T18:34:36Z</dc:date>
    <item>
      <title>is reclassify from the spatial analyst toolset available at the python command line?</title>
      <link>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654047#M50924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to batch a bunch of files and have the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.ReclassByASCIIFile_sa("D:/DATA/ILLINOIS/RFP_Landcover/Raster/chi_U19","C:/Users/Ams/Documents/SUM2011/recMap_chi_highres.txt","D:/DATA/ILLINOIS/RFP_Landcover/Raster/Reclass/Chi_U19_rc","DATA")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.ReclassByASCIIFile_sa("D:/DATA/ILLINOIS/RFP_Landcover/Raster/chi_U20","C:/Users/Ams/Documents/SUM2011/recMap_chi_highres.txt","D:/DATA/ILLINOIS/RFP_Landcover/Raster/Reclass/Chi_U20_rc","DATA")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I got the "code" from running it for one file and then using the "copy as python snippet" so it should work &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;but I get this error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Runtime error &amp;lt;type 'exceptions.AttributeError'&amp;gt;: 'module' object has no attribute 'ReclassByASCIIFile_sa'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and when I try to get to the spatial analyst reclass tool in the command line by typing&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.reclass only the ones from the 3D toolbox are available?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone know what I am doing wrong?&amp;nbsp; should I just use the 3D ones?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any assistance is appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Amelie&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS Yes, I have checked that my spatial analyst toolbox is activated&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 13:25:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654047#M50924</guid>
      <dc:creator>AmelieDavis</dc:creator>
      <dc:date>2011-08-26T13:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: is reclassify from the spatial analyst toolset available at the python command li</title>
      <link>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654048#M50925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I just used the reclassify_3d and that worked - I don't know why reclassify_sa is not available but as long as they both do the same thing I guess it's OK.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there any major difference between the 2?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 15:13:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654048#M50925</guid>
      <dc:creator>AmelieDavis</dc:creator>
      <dc:date>2011-08-26T15:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: is reclassify from the spatial analyst toolset available at the python command li</title>
      <link>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654049#M50926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In arcpy there is a seperate sub-module for doing Spatial Analyst stuff... Try this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.sa.ReclassByASCIIFile(blah, blah)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Other than different licensing requirements, I don't belive there is a differnce between these tools - I could be wrong though.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 15:19:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654049#M50926</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2011-08-26T15:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: is reclassify from the spatial analyst toolset available at the python command li</title>
      <link>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654050#M50927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That worked!! Thanks a lot.&amp;nbsp; I do wonder still what the difference between the two is...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;In arcpy there is a seperate sub-module for doing Spatial Analyst stuff... Try this:&lt;BR /&gt;&lt;BR /&gt;arcpy.sa.ReclassByASCIIFile(blah, blah)&lt;BR /&gt;&lt;BR /&gt;Other than different licensing requirements, I don't belive there is a differnce between these tools - I could be wrong though.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 18:32:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654050#M50927</guid>
      <dc:creator>AmelieDavis</dc:creator>
      <dc:date>2011-08-26T18:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: is reclassify from the spatial analyst toolset available at the python command li</title>
      <link>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654051#M50928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The sa toolbox in arcpy behaves slightly different than other tools to support the Raster object and map algebra natively.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 18:34:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654051#M50928</guid>
      <dc:creator>JasonScheirer</dc:creator>
      <dc:date>2011-08-26T18:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: is reclassify from the spatial analyst toolset available at the python command li</title>
      <link>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654052#M50929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;to find out about sa functionality, simply get its help&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;&amp;gt;&amp;gt; from arcpy import sa&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;&amp;gt;&amp;gt; help(sa.ReclassByTable)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 19:13:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654052#M50929</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2011-08-26T19:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: is reclassify from the spatial analyst toolset available at the python command li</title>
      <link>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654053#M50930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there a difference between using reclass in spatial analyst versus 3d?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;In arcpy there is a seperate sub-module for doing Spatial Analyst stuff... Try this:&lt;BR /&gt;&lt;BR /&gt;arcpy.sa.ReclassByASCIIFile(blah, blah)&lt;BR /&gt;&lt;BR /&gt;Other than different licensing requirements, I don't belive there is a differnce between these tools - I could be wrong though.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 21:08:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654053#M50930</guid>
      <dc:creator>AmelieDavis</dc:creator>
      <dc:date>2011-08-26T21:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: is reclassify from the spatial analyst toolset available at the python command li</title>
      <link>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654054#M50931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sounds like in "backend" processing methodology: yes, in outcome: no.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 22:21:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-reclassify-from-the-spatial-analyst-toolset/m-p/654054#M50931</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2011-08-26T22:21:34Z</dc:date>
    </item>
  </channel>
</rss>

