<?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: How do I covert Scientific E Notation to number in ArcGIS? in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028928#M11157</link>
    <description>&lt;P&gt;I want to change the number, because it (&lt;SPAN&gt;Scientific E Notation&amp;nbsp;number)&lt;/SPAN&gt;&amp;nbsp; does not allow me for any further spatial analysis. Even I can't convert from Raster to Point too. Small number is fine for me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I can't multiply&amp;nbsp;&lt;SPAN&gt;100000 with the raster image&amp;nbsp;too.&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 21 Feb 2021 12:22:06 GMT</pubDate>
    <dc:creator>Shareful</dc:creator>
    <dc:date>2021-02-21T12:22:06Z</dc:date>
    <item>
      <title>How do I covert Scientific E Notation to number in ArcGIS?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028814#M11152</link>
      <description>&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;While analyzing a dataset of NASA, I'm having a Scientific E Notation number like 7.60907e-06. Do you know how do I covert it into the real number in ArcGIS?&lt;/DIV&gt;&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;Pls suggest. A screenshot is attached for your understanding.&lt;/DIV&gt;&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Shareful_0-1613795482321.png" style="width: 264px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/6510iD85B6A2F6198461B/image-dimensions/264x162?v=v2" width="264" height="162" role="button" title="Shareful_0-1613795482321.png" alt="Shareful_0-1613795482321.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 20 Feb 2021 04:36:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028814#M11152</guid>
      <dc:creator>Shareful</dc:creator>
      <dc:date>2021-02-20T04:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I covert Scientific E Notation to number in ArcGIS?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028830#M11153</link>
      <description>&lt;P&gt;It is a real number... you just have to move the decimal place six places to the left&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;a =7.60907e-06
float(a)
7.60907e-06
"{:16.10f}".format(a)  # ---- use 
'    0.0000076091'
# --- now for a brain twister
a = 7.60907 * 1e-06
a
7.609069999999999e-06  # --- floating point representation

# ---- now
a = 7.60907e-06 * 1000000.
7.60907&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Feb 2021 10:20:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028830#M11153</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-02-20T10:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I covert Scientific E Notation to number in ArcGIS?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028907#M11155</link>
      <description>&lt;P&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/215600" target="_blank" rel="noopener"&gt;@DanPatterson&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;many thanks. I'm so sorry, I'm not so good at ArcGIS so far. Would you kindly let me know how do I execute it? Using Raster calculator or what?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Feb 2021 07:05:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028907#M11155</guid>
      <dc:creator>Shareful</dc:creator>
      <dc:date>2021-02-21T07:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do I covert Scientific E Notation to number in ArcGIS?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028922#M11156</link>
      <description>&lt;P&gt;Raster calculator would be the easiest.&lt;/P&gt;&lt;P&gt;But why would you want to multiply the raster by 100000 since it will change your actual values.&lt;/P&gt;&lt;P&gt;Your values are small, perhaps you could tell us what the values represent in the first place&lt;/P&gt;</description>
      <pubDate>Sun, 21 Feb 2021 11:08:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028922#M11156</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-02-21T11:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: How do I covert Scientific E Notation to number in ArcGIS?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028928#M11157</link>
      <description>&lt;P&gt;I want to change the number, because it (&lt;SPAN&gt;Scientific E Notation&amp;nbsp;number)&lt;/SPAN&gt;&amp;nbsp; does not allow me for any further spatial analysis. Even I can't convert from Raster to Point too. Small number is fine for me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I can't multiply&amp;nbsp;&lt;SPAN&gt;100000 with the raster image&amp;nbsp;too.&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Feb 2021 12:22:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028928#M11157</guid>
      <dc:creator>Shareful</dc:creator>
      <dc:date>2021-02-21T12:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I covert Scientific E Notation to number in ArcGIS?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028930#M11158</link>
      <description>&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/conversion/raster-to-point.htm" target="_blank"&gt;Raster to Point (Conversion)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;either floating point or integer rasters can be used... which is strange because scientific notation is still floating point.&lt;/P&gt;&lt;P&gt;did it work when you scaled up the values?&lt;/P&gt;</description>
      <pubDate>Sun, 21 Feb 2021 14:20:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/how-do-i-covert-scientific-e-notation-to-number-in/m-p/1028930#M11158</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-02-21T14:20:54Z</dc:date>
    </item>
  </channel>
</rss>

