<?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: LAS to Raster conversion in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223027#M17245</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I ran the tool manually (with desired settings) and it worked. Then I went to &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Geoprocessing &amp;gt; Results&lt;/SPAN&gt;&lt;SPAN&gt; right-clicked on the tool that just finished running and selected "Copy as Python Snippet". I pasted the code into both the python window and a stand alone script. It worked in both cases.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the code that is working for me:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.LasDatasetToRaster_conversion(inputLASFile,outputRasterFile,"ELEVATION","#","FLOAT","CELLSIZE","10","1")&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if it works for you too Phil!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Mar 2014 16:04:12 GMT</pubDate>
    <dc:creator>JoshuaChisholm</dc:creator>
    <dc:date>2014-03-25T16:04:12Z</dc:date>
    <item>
      <title>LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223022#M17240</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;BR /&gt;&lt;SPAN&gt;I'm having a problem setting the interpolation type in the arcpy.LasDatasetToRaster_conversion python code...I wish to use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Triangulation, LINEAR, NO_THINNING as the options...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;however there appears to be no choice when hovering over interpolation type in the python window and I receive the runtime error "Cannot set input into parameter interpolation_type when using 'TRIANGULATION LINEAR WINDOW_SIZE 10' as described in the ArcGIS 10.1 help guide: &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000052000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000052000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The guide talks about arcpy.LasDatasetToRaster_3d in the python window (this doesn't appear to exist...I have checkout out 3D analyst) and arcpy.conversion.LasDatasetToRaster for the standalone python script brings the same runtime error...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this a known ESRI bug or am I doing something wrong??? Any help would be much appreciated,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Phil&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 13:04:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223022#M17240</guid>
      <dc:creator>PhilipMuggeridge</dc:creator>
      <dc:date>2014-03-25T13:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223023#M17241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Phil,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you please post the exact line you are inputting into the python window (and stand alone script)? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think you &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;might&lt;/SPAN&gt;&lt;SPAN&gt; be inputting the parameters in the wrong way (this tool has an abnormal way of taking inputs).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Would this work?&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.LasDatasetToRaster_3d(inputLASFile, outputRasterFile, 'ELEVATION', 'TRIANGULATION LINEAR NONE')&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 13:29:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223023#M17241</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-25T13:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223024#M17242</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;BR /&gt;&lt;SPAN&gt;Thanks for the speedy reply, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the python window I've just used your comments and set up the following&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from arcpy import env&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;env.workspace = "CURRENT"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.CheckOutExtension('3D')&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inputLASFile = "LAS.lasd"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;outputRasterFile = "Raster"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.LasDatasetToRaster_3d(inputLASFile, outputRasterFile, 'ELEVATION', 'TRIANGULATION LINEAR NONE')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I receive the same error AttributeError: 'module' object has no attribute 'LasDatasetToRaster_3d' as previous&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm running Standard (ArcEditor) license with 3D analyst switched on&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 13:42:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223024#M17242</guid>
      <dc:creator>PhilipMuggeridge</dc:creator>
      <dc:date>2014-03-25T13:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223025#M17243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Phil,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm confused too...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Try out: &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;arcpy.LasDatasetToRaster_conversion&lt;/SPAN&gt;&lt;SPAN&gt; instead of &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;arcpy.LasDatasetToRaster_3d&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please let me know if that works.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 14:40:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223025#M17243</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-25T14:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223026#M17244</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;BR /&gt;&lt;SPAN&gt;yep so when changing to:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from arcpy import env&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;env.workspace = "CURRENT"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.CheckInExtension('3D')&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inputLASFile = "LAS.lasd"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;outputRasterFile = "Raster"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.LasDatasetToRaster_conversion(inputLASFile, outputRasterFile, 'ELEVATION', 'TRIANGULATION LINEAR NONE')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I get the error msg:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Runtime error&amp;nbsp; Traceback (most recent call last):&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 7, in &amp;lt;module&amp;gt;&amp;nbsp;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\conversion.py", line 2329, in LasDatasetToRaster&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e ExecuteError: ERROR 000622: Failed to execute (LAS Dataset to Raster). Parameters are not valid. ERROR 000628: Cannot set input into parameter interpolation_type.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had been using "" instead of&amp;nbsp; 'TRIANGULATION LINEAR NONE' however this is causing an issue in generating a 1m raster where the point spacing and z difference between nearest point in the LAS dataset on undulating ground (coastal areas in particular) causes 'striping' artefacts. Using triangulation will remove this problem and works through the ArcToolbox Las to Raster conversion manual method&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Phil&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 14:47:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223026#M17244</guid>
      <dc:creator>PhilipMuggeridge</dc:creator>
      <dc:date>2014-03-25T14:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223027#M17245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I ran the tool manually (with desired settings) and it worked. Then I went to &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Geoprocessing &amp;gt; Results&lt;/SPAN&gt;&lt;SPAN&gt; right-clicked on the tool that just finished running and selected "Copy as Python Snippet". I pasted the code into both the python window and a stand alone script. It worked in both cases.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the code that is working for me:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.LasDatasetToRaster_conversion(inputLASFile,outputRasterFile,"ELEVATION","#","FLOAT","CELLSIZE","10","1")&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if it works for you too Phil!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 16:04:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223027#M17245</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-25T16:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223028#M17246</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;BR /&gt;&lt;SPAN&gt;so I ran it back through using the code: arcpy.LasDatasetToRaster_conversion(inputLASFile,outputRasterFile,"ELEVATION","#","FLOAT","CELLSIZE","1","1")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It outputs a raster however I don't believe it uses the triangulation method I require as comparing results from the python window run with that of the manual method in ArcToolBox (with Triangulation, LINEAR set) the z values on slopes are &amp;gt;10cm different in places from cell to cell....once a hillshade is generated they look very different....we have a previous process in ArcView3.3 that we are trying to re-create and update for Arc10 and it's this output I'm comparing against.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so the issue appears to be why "#" isn't being read as 'triangulation' and I'm currently stumped as to how to input this through python?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for all your help so far, hopefully we can solve this somehow &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Phil&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 16:56:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223028#M17246</guid>
      <dc:creator>PhilipMuggeridge</dc:creator>
      <dc:date>2014-03-25T16:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223029#M17247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Good catch Phil.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The rasters are different on my machine too. I've tried poking around in the source code a bit, but with no success. I'm thinking this might be an ESRI issue (as you originally mentioned), perhaps a bug, or at the least a need for improved documentation. So far I've had the following issues:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;In the &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000052000000"&gt;documentation&lt;/A&gt; the function is called &lt;SPAN style="font-style:italic;"&gt;LasDatasetToRaster_&lt;STRONG&gt;conversion&lt;/STRONG&gt;&lt;/SPAN&gt;, but the Code Samples use &lt;SPAN style="font-style:italic;"&gt;LasDatasetToRaster_&lt;STRONG&gt;3d&lt;/STRONG&gt;&lt;/SPAN&gt; and &lt;SPAN style="font-style:italic;"&gt;LasDatasetToRaster&lt;/SPAN&gt;.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;The Code Sample (Example 1) doesn't work (or at least not for me).&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;The Parameter &lt;SPAN style="font-style:italic;"&gt;interpolation_type&lt;/SPAN&gt; does not seem to work as indicated.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;The results from the python code snippet does not produce the same results at the tool it was copied from.&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 18:23:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223029#M17247</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-25T18:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223030#M17248</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;BR /&gt;&lt;SPAN&gt;Yes I agree I'm seeing those issues, I built the tool in model builder then exported as a python script and had the same issue as the python code snippet. I think It's probably worth forwarding to ESRI for further investigation as we may have come to a dead end? Thanks for all your help, if you have any further thoughts please let me know&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Phil&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 19:27:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223030#M17248</guid>
      <dc:creator>PhilipMuggeridge</dc:creator>
      <dc:date>2014-03-25T19:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223031#M17249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You may be encountering the following bug, &lt;/SPAN&gt;&lt;A href="http://support.esri.com/en/bugs/nimbus/role/beta10_1/TklNMDkyODA3"&gt;NIM092807&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 11:09:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223031#M17249</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2014-03-27T11:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223032#M17250</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;BR /&gt;&lt;SPAN&gt;I tried following the bug support: NIM-092807&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I change the interpolation type to&amp;nbsp; "TRIANGULATION NO_THINNING MAXIMUM 1"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Input code: arcpy.conversion.LasDatasetToRaster("test", "test2", "ELEVATION",&amp;nbsp; "TRIANGULATION NO_THINNING MAXIMUM 1", "FLOAT", "CELLSIZE", "1", "1")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I received the same runtime error as previous: Runtime error&amp;nbsp; Traceback (most recent call last):&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;&amp;nbsp;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\conversion.py", line 2329, in LasDatasetToRaster&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e ExecuteError: ERROR 000622: Failed to execute (LAS Dataset to Raster). Parameters are not valid. ERROR 000628: Cannot set input into parameter interpolation_type.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Phil&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 12:08:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223032#M17250</guid>
      <dc:creator>PhilipMuggeridge</dc:creator>
      <dc:date>2014-03-27T12:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223033#M17251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I would recommend contacting Tech Support.&amp;nbsp; This may be a bug.&amp;nbsp; Tech Support will be able to log it if it is and find a possible workaround.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 12:28:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223033#M17251</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2014-03-27T12:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223034#M17252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have been in contact with Christine Dartiguenave from ESRI and she was able to figure out the correct syntax for this tool in python. This has been tested in ArcMap 10.2.2 and is integrated into a tool I have to convert multiple raw LAS files into multiple DEM tiles or one large mosaicked DEM. Of course the inputs and outputs and cellsize must be specified. The tool I have works best when the input LASD is generated using the MakeLasDatasetLayer_management to filter a class code such as 2 for Bare earth. Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.LasDatasetToRaster_conversion(inputLasd, outputRaster,"ELEVATION","TRIANGULATION NATURAL_NEIGHBOR NO_THINNING MAXIMUM 0","FLOAT","CELLSIZE",cellSize,"1")&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2014 12:20:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223034#M17252</guid>
      <dc:creator>LukeSturtevant</dc:creator>
      <dc:date>2014-12-15T12:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223035#M17253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;Yes, it seems it is really a kind of bug and I am surprised, that nobody from ESRI did correct it so far. In all the help materials and all the script examples they still keep purely wrong information. As I tested the tool (using ArcGis 10.2 and Python 2.7) I found out, that the problem in utilizing this tool via script is in the amount of input items in the {interpolation_type} field. Even when you want a type of interpolation which is using no point thinning (which should really be stated as "NO_THINNING" instead of "NONE" as they advice in the tool help), you must input the items such as Point Selection Method and Resolution. Even though those items are not applied in the calculation, without filling them the tool is not running at all.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;I have tested several options and I can say, that in my case are working all the settings using Binning, e.g.: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;arcpy.LasDatasetToRaster_conversion(lasd, output, "ELEVATION", "BINNING IDW LINEAR", "FLOAT", "CELLSIZE", "1", "1")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;and also settings using Triangulation such as:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;arcpy.LasDatasetToRaster_conversion(lasd, output, "ELEVATION", "TRIANGULATION LINEAR NO_THINNING MAXIMUM 0", "FLOAT", "CELLSIZE", "1", "1") &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;arcpy.LasDatasetToRaster_conversion(lasd, output, "ELEVATION", "TRIANGULATION NATURAL_NEIGHBOR WINDOW_SIZE MAXIMUM 0", "FLOAT", "CELLSIZE", "1", "1") etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;It seems that I can use any number instead of the "0" for Resolution and the result is always the same. Another strange thing is, that the result is not equal to the same settings with "0" when the tool is running in ArcGIS, but is equal to the result, which the tool in ArcGIS outputs with the default Resolution value calculated uniquely for each dataset (e.g. 0,153884). I did not find out how can I influence the thinning resolution settings at all..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 12.0pt;"&gt;I hope this helps, and others who will get stuck at this bug as I did will not need to test all the options again..&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 13:10:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223035#M17253</guid>
      <dc:creator>MartinMachala</dc:creator>
      <dc:date>2015-09-17T13:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: LAS to Raster conversion</title>
      <link>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223036#M17254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similar problem with&amp;nbsp;arcpy.LasDatasetToTin_3d where the results differ from manual (left) to python (right) settings.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="303" src="https://community.esri.com/legacyfs/online/433286_pastedImage_1.png" width="330" /&gt;&lt;IMG class="image-2 jive-image" height="303" src="https://community.esri.com/legacyfs/online/433287_pastedImage_2.png" width="327" /&gt;&lt;/P&gt;&lt;P&gt;My manual parameters:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" height="232" src="https://community.esri.com/legacyfs/online/433288_pastedImage_3.png" width="362" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which should equate these in python, based on the&amp;nbsp;somewhat unclear&amp;nbsp;&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/3d-analyst/las-dataset-to-tin.htm"&gt;documentation&lt;/A&gt;:&lt;/P&gt;&lt;P&gt;thintype = 'WINDOW_SIZE'&lt;BR /&gt;thinmethod = 'MAX'&lt;BR /&gt;thinvalue = '1'&lt;BR /&gt;maxnodes = '20000000'&lt;BR /&gt;zfactor = '1'&lt;/P&gt;&lt;P&gt;arcpy.LasDatasetToTin_3d(inlasd, outtin, thintype, thinmethod, thinvalue, maxnodes, zfactor)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have those issues/bugs been resolved or am I also doing something wrong?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 18:50:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/las-to-raster-conversion/m-p/223036#M17254</guid>
      <dc:creator>Samy_BoumaNgock</dc:creator>
      <dc:date>2019-01-15T18:50:04Z</dc:date>
    </item>
  </channel>
</rss>

