<?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: arcpy.conversion.RasterToPoint errors in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94976#M7409</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try specifying the entire path for the input raster, rather than relying on the workspace env. If that doesn't work, try running the tool on its own (outside any loop), hardcoding the values that you think should work, and work backwards from there. Things I see that can make easy mistakes in your code: concatenating path components (should try to use os.path.join), using FGDB rasters, relying on envs, specifying a field that probably doesn't exist, and I'm not sure that FGDB rasters are GRID format (although it seems to be working for you).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2018 20:21:38 GMT</pubDate>
    <dc:creator>DarrenWiens2</dc:creator>
    <dc:date>2018-10-04T20:21:38Z</dc:date>
    <item>
      <title>arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94970#M7403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Having difficulty with the following script.&amp;nbsp; A couple of variables to know about are not shown but have been run prior to this snippet, they are:&lt;/P&gt;&lt;P&gt;outrasterpath = r"S:/General-Offices-GO-Trans/SLR-Mapping/GIS_Projects_2018/Smart_T_Line_Model/geodata/TEST_RASTERCLIP.gdb/"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;outrastertopoint = r"S:/General-Offices-GO-Trans/SLR-Mapping/GIS_Projects_2018/Smart_T_Line_Model/geodata/TEST_RASTERTOPOINT.gdb/"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&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; outrasterpath
rasterList &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;"GRID"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; raster &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; rasterList&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;conversion&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;RasterToPoint&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;raster&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; outrastertopoint &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; raster&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Pixel Value"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
Traceback &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;
&amp;nbsp; File &lt;SPAN class="string token"&gt;"&amp;lt;string&amp;gt;"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;2&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;
&amp;nbsp; File &lt;SPAN class="string token"&gt;"c:\program files\arcgis\pro\Resources\arcpy\arcpy\conversion.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;195&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; RasterToPoint
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;raise&lt;/SPAN&gt; e
&amp;nbsp; File &lt;SPAN class="string token"&gt;"c:\program files\arcgis\pro\Resources\arcpy\arcpy\conversion.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;192&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; RasterToPoint
&amp;nbsp;&amp;nbsp;&amp;nbsp; retval &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; convertArcObjectToPythonObject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;gp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;RasterToPoint_conversion&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;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;in_raster&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; out_point_features&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; raster_field&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&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;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp; File &lt;SPAN class="string token"&gt;"c:\program files\arcgis\pro\Resources\arcpy\arcpy\geoprocessing\_base.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;496&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;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;
arcgisscripting&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;000860&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Input raster&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;is&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; the type of Composite Geodataset&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;or&lt;/SPAN&gt; does &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; exist&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
ERROR &lt;SPAN class="number token"&gt;001000&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Field&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Field Pixel Value does &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; exist
Failed to execute &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;RasterToPoint&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A few other bits of info.&amp;nbsp; I have tried "VALUE", "Pixel value", and "Stretch.Pixel Value" for the last argument, none work.&lt;/P&gt;&lt;P&gt;Have left the () with no inputs on Line 2 with no luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:37:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94970#M7403</guid>
      <dc:creator>JimFritz</dc:creator>
      <dc:date>2021-12-10T23:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94971#M7404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;throw a print statement in at line 3.5.&lt;/P&gt;&lt;P&gt;you don't raw encode (ie r ) forward-slashed paths (can't remember if it is an issue but it shouldn't be there)&lt;/P&gt;&lt;P&gt;And the biggie... it requires a 'raster layer' as input, not a file on disk unless it is a *.lyr which wouldn't be in a gdb anyway.&amp;nbsp; So you will have to add a&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/make-raster-layer.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/make-raster-layer.htm"&gt;Make Raster Layer—Data Management toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to the workflow&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 19:20:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94971#M7404</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-10-04T19:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94972#M7405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;The forward slashes have not been issue so far.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here’s the result of the print:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;print(rasterList)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, that is OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did change a line of code as I had “raster” meaning a pathname to a grid that was used for clipping earlier in the script as opposed to it being referenced in the&lt;/P&gt;&lt;P&gt;For raster in rasterList:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 19:28:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94972#M7405</guid>
      <dc:creator>JimFritz</dc:creator>
      <dc:date>2018-10-04T19:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94973#M7406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;lets try print(raster) since print(rasterlist) didn't appear to print (or is it a copy past issue),&lt;/P&gt;&lt;P&gt;You still need a rasterlayer… which isn't a raster per se but a *.lyr *.lyrx or it is a 'layer' open in arcmap or Pro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 19:45:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94973#M7406</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-10-04T19:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94974#M7407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here’s the result of both print(raster) and print(rasterlist).  In this script it’s looping thru 5 grids, from rasterlist:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;print(raster)&lt;/P&gt;&lt;P&gt;T_0517__BRI_DJS_TP_34_5_1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;print(rasterList)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 19:54:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94974#M7407</guid>
      <dc:creator>JimFritz</dc:creator>
      <dc:date>2018-10-04T19:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94975#M7408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so it is a raster... throw it into the makerasterlayer and use that layer in the conversion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 19:58:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94975#M7408</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-10-04T19:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94976#M7409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try specifying the entire path for the input raster, rather than relying on the workspace env. If that doesn't work, try running the tool on its own (outside any loop), hardcoding the values that you think should work, and work backwards from there. Things I see that can make easy mistakes in your code: concatenating path components (should try to use os.path.join), using FGDB rasters, relying on envs, specifying a field that probably doesn't exist, and I'm not sure that FGDB rasters are GRID format (although it seems to be working for you).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 20:21:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94976#M7409</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2018-10-04T20:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94977#M7410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;Since it is going to be 1,455 rasters in the loop I was hoping to not have to run another conversion prior to running the raster to point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO, I’m hoping for another solution but will attempt to use this if no other solutions come in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 20:25:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94977#M7410</guid>
      <dc:creator>JimFritz</dc:creator>
      <dc:date>2018-10-04T20:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94978#M7411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try one... from the example they use a *.img… I have tested with *.tiff that is both seem to be standalone files, so the gdb raster stuff, you will have to see if it works.&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;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; env
env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"C:/data"&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# ---- notice, a folder with a raster dataset&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;RasterToPoint_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"source.img"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"c:/output/source.shp"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"VALUE"&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;if it works for one raster that you know of then you should be good.&lt;/P&gt;&lt;P&gt;I wouldn't even change the shapefile output until you know the process works&lt;/P&gt;&lt;P&gt;replace env.workspace with your gdb path&lt;/P&gt;&lt;P&gt;replace source.img with your 'raster' name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:37:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94978#M7411</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-10T23:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.conversion.RasterToPoint errors</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94979#M7412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, will give that a go tomorrow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your assistance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 20:51:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-conversion-rastertopoint-errors/m-p/94979#M7412</guid>
      <dc:creator>JimFritz</dc:creator>
      <dc:date>2018-10-04T20:51:01Z</dc:date>
    </item>
  </channel>
</rss>

