<?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 AttributeError: DescribeData: Method catalogPath does not exist in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/attributeerror-describedata-method-catalogpath/m-p/133265#M4580</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a python script tool that operates on raster data.&amp;nbsp; It runs fine on its own, but when I use it in a model and feed it raster data from another process, I get the error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt; File "D:\Scripts\dz.py", line 531, in &amp;lt;module&amp;gt;&lt;BR /&gt; BFList.append(descObj.catalogPath)&lt;BR /&gt;AttributeError: DescribeData: Method catalogPath does not exist&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jul 2018 18:38:23 GMT</pubDate>
    <dc:creator>LukeCatania</dc:creator>
    <dc:date>2018-07-17T18:38:23Z</dc:date>
    <item>
      <title>AttributeError: DescribeData: Method catalogPath does not exist</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/attributeerror-describedata-method-catalogpath/m-p/133265#M4580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a python script tool that operates on raster data.&amp;nbsp; It runs fine on its own, but when I use it in a model and feed it raster data from another process, I get the error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt; File "D:\Scripts\dz.py", line 531, in &amp;lt;module&amp;gt;&lt;BR /&gt; BFList.append(descObj.catalogPath)&lt;BR /&gt;AttributeError: DescribeData: Method catalogPath does not exist&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2018 18:38:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/attributeerror-describedata-method-catalogpath/m-p/133265#M4580</guid>
      <dc:creator>LukeCatania</dc:creator>
      <dc:date>2018-07-17T18:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: AttributeError: DescribeData: Method catalogPath does not exist</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/attributeerror-describedata-method-catalogpath/m-p/133266#M4581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sharing with &lt;A href="https://community.esri.com/space/2145"&gt;Python&lt;/A&gt;‌.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you elaborate on how you are passing raster data from another process?&amp;nbsp; Are you creating the raster data on disk using another process and then passing the name/path to this process?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although the error message and trace back is helpful, they are less helpful without some of the functional code.&amp;nbsp; From what you have posted, about all I can say is that you are trying to access an attribute of descObj that doesn't exist.&amp;nbsp; If I knew what descObj was and how it was created, I could offer more thoughts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2018 19:07:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/attributeerror-describedata-method-catalogpath/m-p/133266#M4581</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-07-17T19:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: AttributeError: DescribeData: Method catalogPath does not exist</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/attributeerror-describedata-method-catalogpath/m-p/133267#M4582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/arcpy/functions/describe-object-properties.htm" title="http://pro.arcgis.com/en/pro-app/arcpy/functions/describe-object-properties.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Describe object properties—ArcPy Functions | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;from that help topic code example, you need an object to describe before you get its attributes&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;desc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"C:/Data/chesapeake.gdb"&lt;/SPAN&gt;&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;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt; snip

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"CatalogPath: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; desc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;catalogPath&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:28:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/attributeerror-describedata-method-catalogpath/m-p/133267#M4582</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-11T07:28:34Z</dc:date>
    </item>
  </channel>
</rss>

