<?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: Additional digits added by 'ascii to raster' tool in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653634#M21818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/430001_numpyarraytoraster02.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I generated the tiff from your ascii file using numpy as....&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; NumPyArrayToRaster
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; Point

path &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"C:\Temp\dem.txt"&lt;/SPAN&gt;
ncols&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;317&lt;/SPAN&gt;
nrows&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;204&lt;/SPAN&gt;
xllcorner &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;2697732&lt;/SPAN&gt;
yllcorner &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;1210264&lt;/SPAN&gt;
cellsize&amp;nbsp; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;
NODATA_value &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;9999&lt;/SPAN&gt;

a &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;genfromtxt&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;float&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; delimiter&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;' '&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; skip_header&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;6&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
a0 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;where&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;a&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;9999&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;nan&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; a&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

LL &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Point&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;xllcorner&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; yllcorner&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
out &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; NumPyArrayToRaster&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;a0&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; LL&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2.0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2.0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;nan&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
out&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;save&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"C:\Temp\dem_np.tif"&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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Statistics yield&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="429996" alt="" class="image-1 jive-image" height="684" src="https://community.esri.com/legacyfs/online/429996_numpyarraytoraster01.png" width="714" /&gt;&lt;/P&gt;&lt;P&gt;So you can get 64 bit if you need it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 03:42:10 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2021-12-12T03:42:10Z</dc:date>
    <item>
      <title>Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653627#M21811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a DEM in ascii format which I imported into ArcMap using the 'ascii to raster' tool. All values in the ascii file have 3 digits after the decimal point. However, after importing, the raster values do have many more digits (e.g. 1451.623 became 1451.623047...). Does anyone know where the additional digits come from, aka what is happening behind the scenes of the ascii to raster tool?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2018 22:44:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653627#M21811</guid>
      <dc:creator>MarcVis</dc:creator>
      <dc:date>2018-11-19T22:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653628#M21812</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/tool-reference/conversion/ascii-to-raster.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/conversion/ascii-to-raster.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;ASCII to Raster—Conversion toolbox | ArcGIS Desktop&lt;/A&gt; or&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/conversion/dem-to-raster.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/conversion/dem-to-raster.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;DEM to Raster—Conversion toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any extra decimals places were already&amp;nbsp; UNLESS you are confirming that&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: arial,helvetica,'helvetica neue',verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;1451.623 &lt;/SPAN&gt;was actually showing in the text file&amp;nbsp; Otherwise it may be floating point representation but the example you give doesn't show this&lt;/P&gt;&lt;P&gt;for example going from float16 to float64 you can see that the decimal representation is different, but none are gained.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;z &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;array&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1451.623&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; dtype&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;float16&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;z&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="number token"&gt;1452.0&lt;/SPAN&gt;

z &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;array&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1451.623&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; dtype&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;float32&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;z&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="number token"&gt;1451.623&lt;/SPAN&gt;

z &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;array&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1451.623&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; dtype&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;float64&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;z&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="number token"&gt;1451.623&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;So the question might be, what is the final format of your 'raster'…?&amp;nbsp; an esri grid?&amp;nbsp; a geodatabase raster?&amp;nbsp; a *.tif? (recommended).&amp;nbsp; Do the numbers change with the output format?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:42:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653628#M21812</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T03:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653629#M21813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply!&lt;/P&gt;&lt;P&gt;Yes, the value &lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: arial,helvetica,'helvetica neue',verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;1451.623&lt;/SPAN&gt; is showing in the text file. The output format doesn't affect the results of the import, i.e. esri grid, tif, geodatabase all result in the same output.&lt;/P&gt;&lt;P&gt;I attached the ascii file, so you might be able to reproduce my observations. Also attached are two screen shots, one from the Identify form (showing the pixel value &lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: arial,helvetica,'helvetica neue',verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;1451.623&lt;/SPAN&gt;047) and one from the Layer Properties (showing 10 decimal places for the minimum and maximum of the raster).&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 10:10:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653629#M21813</guid>
      <dc:creator>MarcVis</dc:creator>
      <dc:date>2018-11-20T10:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653630#M21814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I converted your data to a numpy array, it came in as a float32 (32bit floating point values).&lt;/P&gt;&lt;P&gt;I set the array type to float64 and a slice of it looked like this&lt;/P&gt;&lt;P&gt;a[100:300, 100:300]&lt;BR /&gt;Out[44]: &lt;BR /&gt;array([[1489.567, 1490.179, 1490.441, 1490.702, 1491.003, 1491.728, 1492.366,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1493.299, 1493.946, 1494.314, ..., 1639.082, 1639.969, 1640.586,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1641.29 , 1642.091, 1642.714, 1643.287, 1643.971, 1644.556, 1645.272],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [1490.182, 1490.748, 1491.255, 1491.775, 1492.324, 1492.644, 1493.596,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I suspect it is just a floating point representation issue. I don't know what they are using behind the scenes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 11:22:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653630#M21814</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-11-20T11:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653631#M21815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use&amp;nbsp;&lt;A class="link-titled" href="https://www.h-schmidt.net/FloatConverter/IEEE754.html" title="https://www.h-schmidt.net/FloatConverter/IEEE754.html"&gt;IEEE-754 Floating Point Converter&lt;/A&gt;&amp;nbsp;&amp;nbsp;and you'll soon see that 1451.623 is actually&amp;nbsp;1451.623046875&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ASCIIToRaster tool produces 32 bit rasters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 12:31:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653631#M21815</guid>
      <dc:creator>SteveLynch</dc:creator>
      <dc:date>2018-11-20T12:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653632#M21816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve are the raster tools 32 bit still?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 16:08:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653632#M21816</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-11-20T16:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653633#M21817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, however, some of the conversion tools like Point, Polyline and Polygon ToRaster can create a 64 bit (double) raster.&amp;nbsp; This has been the case for many years, way back in 9.2 or 9.3 I believe. The tool will decide if the output should be 32 or 64 bit. CopyRaster, on the other hand, has a parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Esri grid format only supports 32 bit, so you'll rather have to output to fgdb, tif or img.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 16:29:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653633#M21817</guid>
      <dc:creator>SteveLynch</dc:creator>
      <dc:date>2018-11-20T16:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653634#M21818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/430001_numpyarraytoraster02.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I generated the tiff from your ascii file using numpy as....&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; NumPyArrayToRaster
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; Point

path &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"C:\Temp\dem.txt"&lt;/SPAN&gt;
ncols&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;317&lt;/SPAN&gt;
nrows&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;204&lt;/SPAN&gt;
xllcorner &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;2697732&lt;/SPAN&gt;
yllcorner &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;1210264&lt;/SPAN&gt;
cellsize&amp;nbsp; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;
NODATA_value &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;9999&lt;/SPAN&gt;

a &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;genfromtxt&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;float&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; delimiter&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;' '&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; skip_header&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;6&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
a0 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;where&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;a&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;9999&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;nan&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; a&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

LL &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Point&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;xllcorner&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; yllcorner&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
out &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; NumPyArrayToRaster&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;a0&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; LL&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2.0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2.0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;nan&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
out&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;save&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"C:\Temp\dem_np.tif"&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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Statistics yield&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="429996" alt="" class="image-1 jive-image" height="684" src="https://community.esri.com/legacyfs/online/429996_numpyarraytoraster01.png" width="714" /&gt;&lt;/P&gt;&lt;P&gt;So you can get 64 bit if you need it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:42:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653634#M21818</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T03:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653635#M21819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve as you were responding, I used NumPyArrayToRaster… which is my usual route, and things are good&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 16:35:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653635#M21819</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-11-20T16:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653636#M21820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you could also skip using ASCIIToRaster and rather use the CopyRaster tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure that the ASCII file has a .asc extension and pick PixelType=64 bit&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 16:43:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653636#M21820</guid>
      <dc:creator>SteveLynch</dc:creator>
      <dc:date>2018-11-20T16:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653637#M21821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;True... I just find it easier using the array approach since I can do any last minute resampling/aggregation or reclassification (the empty line 13 &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt; ) before saving out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 16:47:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653637#M21821</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-11-20T16:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Additional digits added by 'ascii to raster' tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653638#M21822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan and Steve, thanks a lot for your replies, that was very helpful! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 19:42:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/additional-digits-added-by-ascii-to-raster-tool/m-p/653638#M21822</guid>
      <dc:creator>MarcVis</dc:creator>
      <dc:date>2018-11-20T19:42:18Z</dc:date>
    </item>
  </channel>
</rss>

