<?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: Issue with TIN to Raster Conversion in ArcPy – Cannot Set Cell Size Below 1 in 3D Questions</title>
    <link>https://community.esri.com/t5/3d-questions/issue-with-tin-to-raster-conversion-in-arcpy/m-p/1631063#M5396</link>
    <description>&lt;P&gt;Hey thanks a lot for your answer. Unfortunately I get the same error with this approach..&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jul 2025 12:33:26 GMT</pubDate>
    <dc:creator>Luis761</dc:creator>
    <dc:date>2025-07-08T12:33:26Z</dc:date>
    <item>
      <title>Issue with TIN to Raster Conversion in ArcPy – Cannot Set Cell Size Below 1</title>
      <link>https://community.esri.com/t5/3d-questions/issue-with-tin-to-raster-conversion-in-arcpy/m-p/1630566#M5394</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm working with ArcPy and using the TIN to Raster tool in my current workflow. The raster cell size is a parameter that can be set via a GUI input. However, whenever I try to set the raster size to a value smaller than 1, I receive the following error:&lt;/P&gt;&lt;P&gt;ERROR 000323: The parameter value must be greater than 0.&lt;BR /&gt;Failed to execute (TinRaster).&lt;/P&gt;&lt;P&gt;Here’s the relevant code snippet:&lt;/P&gt;&lt;P&gt;# 4.2) TIN to raster&lt;BR /&gt;out_tif = os.path.join(workspace_raster, "raster_1")&lt;BR /&gt;arcpy.ddd.TinRaster(tin_raster, out_tif, "FLOAT", "LINEAR", "CELLSIZE", raster_size)&lt;/P&gt;&lt;DIV class=""&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;The code works as long as raster_size is greater than or equal to 1.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Setting a value below 1, either by passing the parameter or hardcoding it (e.g., raster_size = 0.5), always results in the error above.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Attempting to use the "CELLSIZE 0.5" syntax for sample_distance doesn’t resolve the issue either.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;What's strange:&lt;/STRONG&gt;&lt;BR /&gt;When I use the TIN to Raster tool directly in the ArcGIS Pro GUI, I can set cell sizes smaller than 1 with no problems on the same data.&lt;/P&gt;&lt;P&gt;Has anyone else experienced this?&lt;BR /&gt;Is there a workaround or a way to bypass this limitation in ArcPy, without having to resort to the manual tool in ArcGIS Pro?&lt;/P&gt;&lt;P&gt;Thanks in advance for any advice or ideas!&lt;/P&gt;&lt;P&gt;Kind regards, Luis&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 08:20:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/issue-with-tin-to-raster-conversion-in-arcpy/m-p/1630566#M5394</guid>
      <dc:creator>Luis761</dc:creator>
      <dc:date>2025-07-07T08:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with TIN to Raster Conversion in ArcPy – Cannot Set Cell Size Below 1</title>
      <link>https://community.esri.com/t5/3d-questions/issue-with-tin-to-raster-conversion-in-arcpy/m-p/1630577#M5395</link>
      <description>&lt;P&gt;Have a look at specifying the z-factor and the last parameter explicitly&lt;/P&gt;&lt;P&gt;arcpy.ddd.TinRaster(in_tin, out_raster, {data_type}, {method}, {sample_distance}, {z_factor}, sample_value)&lt;/P&gt;&lt;P&gt;....&amp;nbsp; "FLOAT", "LINEAR", "CELLSIZE", 1.0, 0.5)&lt;/P&gt;&lt;P&gt;data_type&amp;nbsp; Float&amp;nbsp;&lt;/P&gt;&lt;P&gt;method&amp;nbsp; linear&amp;nbsp;&lt;/P&gt;&lt;P&gt;sample_distance cellsize&amp;nbsp; &amp;nbsp; &amp;nbsp; cellsize needs a value from the last parameter, the tool&lt;/P&gt;&lt;P&gt;z_factor&amp;nbsp; 1.0&amp;nbsp; &amp;nbsp;optional, but specify as a float&lt;/P&gt;&lt;P&gt;sample value&amp;nbsp; &amp;nbsp; 0.5&amp;nbsp; &amp;nbsp;The cell size to use&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 08:43:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/issue-with-tin-to-raster-conversion-in-arcpy/m-p/1630577#M5395</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2025-07-07T08:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with TIN to Raster Conversion in ArcPy – Cannot Set Cell Size Below 1</title>
      <link>https://community.esri.com/t5/3d-questions/issue-with-tin-to-raster-conversion-in-arcpy/m-p/1631063#M5396</link>
      <description>&lt;P&gt;Hey thanks a lot for your answer. Unfortunately I get the same error with this approach..&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 12:33:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/issue-with-tin-to-raster-conversion-in-arcpy/m-p/1631063#M5396</guid>
      <dc:creator>Luis761</dc:creator>
      <dc:date>2025-07-08T12:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with TIN to Raster Conversion in ArcPy – Cannot Set Cell Size Below 1</title>
      <link>https://community.esri.com/t5/3d-questions/issue-with-tin-to-raster-conversion-in-arcpy/m-p/1631103#M5397</link>
      <description>&lt;P&gt;Tech support would be your best bet now&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 14:27:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/issue-with-tin-to-raster-conversion-in-arcpy/m-p/1631103#M5397</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2025-07-08T14:27:49Z</dc:date>
    </item>
  </channel>
</rss>

