<?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 Converting a raster to an array in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/converting-a-raster-to-an-array/m-p/672612#M52031</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 16.0pt; font-family: 'Times New Roman',serif;"&gt;Hello to all:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 16.0pt; font-family: 'Times New Roman',serif;"&gt;I am interested in creating a workflow that converts a raster to an array. I am familiar with raster technology and I am getting up to speed with NumPy. Related to this, how can I find a list/description of the functions available with NumPy?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 16.0pt; font-family: 'Times New Roman',serif;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 16.0pt; font-family: 'Times New Roman',serif;"&gt;Mel&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Jul 2016 16:08:33 GMT</pubDate>
    <dc:creator>MelvinShuster</dc:creator>
    <dc:date>2016-07-01T16:08:33Z</dc:date>
    <item>
      <title>Converting a raster to an array</title>
      <link>https://community.esri.com/t5/python-questions/converting-a-raster-to-an-array/m-p/672612#M52031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 16.0pt; font-family: 'Times New Roman',serif;"&gt;Hello to all:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 16.0pt; font-family: 'Times New Roman',serif;"&gt;I am interested in creating a workflow that converts a raster to an array. I am familiar with raster technology and I am getting up to speed with NumPy. Related to this, how can I find a list/description of the functions available with NumPy?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 16.0pt; font-family: 'Times New Roman',serif;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 16.0pt; font-family: 'Times New Roman',serif;"&gt;Mel&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jul 2016 16:08:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/converting-a-raster-to-an-array/m-p/672612#M52031</guid>
      <dc:creator>MelvinShuster</dc:creator>
      <dc:date>2016-07-01T16:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a raster to an array</title>
      <link>https://community.esri.com/t5/python-questions/converting-a-raster-to-an-array/m-p/672613#M52032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/rastertonumpyarray-function.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/rastertonumpyarray-function.htm"&gt;RasterToNumPyArray—Help | ArcGIS for Desktop&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/numpyarraytoraster-function.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/numpyarraytoraster-function.htm"&gt;NumPyArrayToRaster—Help | ArcGIS for Desktop&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and these&lt;/P&gt;&lt;P&gt;&lt;A href="http://docs.scipy.org/doc/numpy/reference/" title="http://docs.scipy.org/doc/numpy/reference/"&gt;NumPy Reference — NumPy v1.11 Manual&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/numpy/numpy" title="https://github.com/numpy/numpy"&gt;GitHub - numpy/numpy: Numpy main repository&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once installed which you should have,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import numpy as np&lt;/P&gt;&lt;P&gt;dir(np)&amp;nbsp;&amp;nbsp;&amp;nbsp; # huge list of properties methods and modules&lt;/P&gt;&lt;P&gt;help(np)&amp;nbsp; ditto&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also the scipy and pandas stuff on github and the scipy help references as well. but this should get you going.&amp;nbsp; Should you get up to speed and wish to get involved in numpy/scipy/&amp;nbsp; nD array stuff, there is also a small group I maintain for those with more than passing interest and expertise &lt;A href="https://community.esri.com/group/1732"&gt;NumPy Repository&lt;/A&gt;​&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADDENDUM&amp;nbsp; I also let a fair amount of stuff slip into my regular work and it can&amp;nbsp; be found in&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migration-blogpost/55413"&gt;The ...py... links&lt;/A&gt; which has links to my blog&amp;nbsp; &lt;A href="https://community.esri.com/migration-blogpost/1167"&gt;Py... blog&lt;/A&gt; there are other blogs equally useful as well&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jul 2016 16:28:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/converting-a-raster-to-an-array/m-p/672613#M52032</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-07-01T16:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a raster to an array</title>
      <link>https://community.esri.com/t5/python-questions/converting-a-raster-to-an-array/m-p/672614#M52033</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;This is most helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jul 2016 18:24:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/converting-a-raster-to-an-array/m-p/672614#M52033</guid>
      <dc:creator>MelvinShuster</dc:creator>
      <dc:date>2016-07-01T18:24:01Z</dc:date>
    </item>
  </channel>
</rss>

