<?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: Export raster statistics? in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442965#M25247</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Nooski,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know of any other tool/script that easily lets you export the statistics. In ArcMap you can export the current statistics to an xml file (when using statistics from current display extent) but I don't think there is a way to script this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Get Raster Properties might be your best bet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Robert&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Oct 2010 15:12:37 GMT</pubDate>
    <dc:creator>RobertBerger</dc:creator>
    <dc:date>2010-10-08T15:12:37Z</dc:date>
    <item>
      <title>Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442964#M25246</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;Does anyone know if there is a tool out there that lets me export the statistics of a raster datatset? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Basically, I would like to write out the statistics of several rasters to a table or textfile. Think of how it looks under the Statistics heading in the Rater Dataset Properties window. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is the Get raster properties tool, which I could call several times to get most of what I want, but I was hoping for something smoother than that. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I could try and come up with a script that does this but I've looked through the geoprocessor and can't seem to find anything useful there either. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any suggestions? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nooski&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 12:38:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442964#M25246</guid>
      <dc:creator>StefanHaglund1</dc:creator>
      <dc:date>2010-10-08T12:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442965#M25247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Nooski,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know of any other tool/script that easily lets you export the statistics. In ArcMap you can export the current statistics to an xml file (when using statistics from current display extent) but I don't think there is a way to script this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Get Raster Properties might be your best bet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Robert&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 15:12:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442965#M25247</guid>
      <dc:creator>RobertBerger</dc:creator>
      <dc:date>2010-10-08T15:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442966#M25248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Something like:&lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# GetRasterProperties.py 
# Description: Write raster properties to a file. 
# Note: Written for ArcGIS 9.3. 

# Create the Geoprocessor object 
import arcgisscripting
gp = arcgisscripting.create()

# Get input parameters
InRaster = gp.GetParameterAsText(0)
OutFile = gp.GetParameterAsText(1)

#Property Types
PropertyTypes=['MINIMUM','MAXIMUM','MEAN','STD','UNIQUEVALUECOUNT','TOP','LEFT','RIGHT','BOTTOM','CELLSIZEX','CELLSIZEY','VALUETYPE','COLUMNCOUNT','ROWCOUNT','BANDCOUNT']

#Output file
OutFile=open(OutFile,'w')

# Process: GetRasterProperties 
for PropertyType in PropertyTypes:
&amp;nbsp;&amp;nbsp;&amp;nbsp; try:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Property = gp.GetRasterProperties(InRaster, PropertyType)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage('%s=%s'%(PropertyType,Property))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OutFile.write('%s=%s\n'%(PropertyType,Property))
&amp;nbsp;&amp;nbsp;&amp;nbsp; except:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Print error message if an error occurs 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage(gp.GetMessages(2))

OutFile.close()
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:48:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442966#M25248</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2021-12-11T19:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442967#M25249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This could be really useful if it writes the statistic I need (mean) for many rasters to &lt;/SPAN&gt;&lt;SPAN style="text-decoration:underline;"&gt;one&lt;/SPAN&gt;&lt;SPAN&gt; file.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How would I run this?&amp;nbsp; I've tried running it stand alone in PyWin, no dice, and by creating a script within Toolbox within an ArcMap session that has the rasters I want to generate stats for.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 18:59:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442967#M25249</guid>
      <dc:creator>BryceStath</dc:creator>
      <dc:date>2010-12-21T18:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442968#M25250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;All, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a follow up. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With help from Luke I managed to get a crude script for 10. It looks like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy import env
env.workspace = "C:\Path"
outfile = open("C:\RastStats.txt", 'w')
PropTypes = ["MINIMUM", "MAXIMUM", "MEAN"]
rastlist = arcpy.ListRasters("*", "")
for raster in rastlist:
&amp;nbsp;&amp;nbsp;&amp;nbsp; rastname = str(raster)
&amp;nbsp;&amp;nbsp;&amp;nbsp; outfile.write(rastname + "\n")
&amp;nbsp;&amp;nbsp;&amp;nbsp; for PropType in PropTypes:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print PropType
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Prop = arcpy.GetRasterProperties_management(raster, PropType)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; textinfo = (PropType, Prop)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; textstring = str(textinfo)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outfile.write(textstring + "\n")
outfile.close()&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is still some formatting to do, the result looks like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;--------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;raster1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;('MINIMUM', &amp;lt;Result '0'&amp;gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;('MAXIMUM', &amp;lt;Result '2203.59692382813'&amp;gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;('MEAN', &amp;lt;Result '400.089714329223'&amp;gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;--------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The lines ('MINIMUM', &amp;lt;Result '0'&amp;gt;) and so on is what comes out of the GetRasterProperties tool in the script, it would be good to have it formatted nicer, like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;--------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;raster1:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MINIMUM = 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MAXIMUM = 2203.59692382813&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MEAN = 400.089714329223&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;--------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I have now is enough for me at the moment, but I wonder why ESRI (or arcpy) formats the results like it does? If you run it as a tool dialog you get "MEAN = 400.089714329223".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, the script is pretty slow, maybe the nested for-loops slows things down?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:48:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442968#M25250</guid>
      <dc:creator>StefanHaglund1</dc:creator>
      <dc:date>2021-12-11T19:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442969#M25251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;All, &lt;BR /&gt;&lt;BR /&gt;Here's a follow up. &lt;BR /&gt;&lt;BR /&gt;With help from Luke I managed to get a crude script for 10. It looks like this:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy import env
env.workspace = "C:\Path"
outfile = open("C:\RastStats.txt", 'w')
PropTypes = ["MINIMUM", "MAXIMUM", "MEAN"]
rastlist = arcpy.ListRasters("*", "")
for raster in rastlist:
&amp;nbsp;&amp;nbsp;&amp;nbsp; rastname = str(raster)
&amp;nbsp;&amp;nbsp;&amp;nbsp; outfile.write(rastname + "\n")
&amp;nbsp;&amp;nbsp;&amp;nbsp; for PropType in PropTypes:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print PropType
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Prop = arcpy.GetRasterProperties_management(raster, PropType)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; textinfo = (PropType, Prop)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; textstring = str(textinfo)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outfile.write(textstring + "\n")
outfile.close()&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This looks promising, but I'm still on 9.3&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll be trying to get this to work, but could use help if anyone feels like translating this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:48:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442969#M25251</guid>
      <dc:creator>BryceStath</dc:creator>
      <dc:date>2021-12-11T19:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442970#M25252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;This looks promising, but I'm still on 9.3&lt;BR /&gt;I'll be trying to get this to work, but could use help if anyone feels like translating this.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;See the 3rd post - (&lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/showthread.php?p=45823#poststop"&gt;http://forums.arcgis.com/showthread.php?p=45823#poststop&lt;/A&gt;&lt;SPAN&gt;) it's for 9.3 and will do what you want with minimal changes. Basically instead of looping through statistic types, loop through rasters and get the mean - ie mean = gp.GetRasterProperties(someraster, 'MEAN')&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 20:36:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442970#M25252</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2011-02-03T20:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442971#M25253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've been working on this (see code below)....&amp;nbsp; and it runs although it doesn't want to produce an output file for each grid within&amp;nbsp; gp.Workspace = "C:\\working\\Temp\\testing\\grids&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Lets say I have two sample grids in there &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;f1p060_10c2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;f1p060_10c4&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I end up only getting in my output folder&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\working\Temp\testing\outputs3\f1p060_10c2_stats.dbf&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So it appears that my while loop isn't looping.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The end goal here is to have all of my raster stats in one file.&amp;nbsp; If I can get this process to work, to write the stats from each input raster to one file, that's good enough.&amp;nbsp; I have an excel script that will push all files in one directory into one master file. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# BatchZonalStatisticsAsTable.py
# Description: Summarizes values of a raster within the zones of another dataset and reports the results to a table
# Requirements: None
# Author: David Coley
# Date: 05/10/06

#import win32com.client, sys, os, string
import arcgisscripting
gp = arcgisscripting.create()
gp.CheckOutExtension("Spatial")
gp.CellSize = 1 #can set as argument
gp.OverWriteOutput = 1

try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.Workspace = "C:\\working\\Temp\\testing\\grids" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; InZonalLayer = "C:\\working\\Temp\\testing\\TreatmentFranksTract2010.mdb\\Controls"
&amp;nbsp;&amp;nbsp;&amp;nbsp; InZonalValueField = "PIN" #can set as argumment
&amp;nbsp;&amp;nbsp;&amp;nbsp; #set output workspace which holds tables in a gdb
&amp;nbsp;&amp;nbsp;&amp;nbsp; OutWorkSpace = "C:\\working\\Temp\\testing\\outputs3"
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Get the raster datasets in the input workspace and loop through them from the start

&amp;nbsp;&amp;nbsp;&amp;nbsp; InputRasters = gp.ListRasters()
&amp;nbsp;&amp;nbsp;&amp;nbsp; InputRasters.reset()
&amp;nbsp;&amp;nbsp;&amp;nbsp; InputRaster = InputRasters.next()
&amp;nbsp;&amp;nbsp;&amp;nbsp; OutTable = "C:\\working\\Temp\\testing\\outputs3\\" + InputRaster + "_stats.dbf" 

&amp;nbsp;&amp;nbsp;&amp;nbsp; while InputRaster:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Process: Zonal Statistics as Table 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.ZonalStatisticsAsTable_sa(InZonalLayer, InZonalValueField, InputRaster, OutTable, "DATA")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # print InputRaster
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; InputRaster = InputRasters.next()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #print OutTable
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage(gp.GetMessages(2))
&amp;nbsp;&amp;nbsp;&amp;nbsp; print gp.GetMessages(2)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:48:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442971#M25253</guid>
      <dc:creator>BryceStath</dc:creator>
      <dc:date>2021-12-11T19:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442972#M25254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What parameters must I input in the parameters tab to get this to work?&amp;nbsp; I am new to scripts and getting them to work.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 14:31:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442972#M25254</guid>
      <dc:creator>ArvindBhuta</dc:creator>
      <dc:date>2011-08-23T14:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442973#M25255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;What parameters must I input in the parameters tab to get this to work?&amp;nbsp; I am new to scripts and getting them to work.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This script is hard coded - it does not take parameters.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 16:47:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442973#M25255</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-01-17T16:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export raster statistics?</title>
      <link>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442974#M25256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;So it appears that my while loop isn't looping.&amp;nbsp; &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You skipped the first record, so you're only getting the second.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; InputRasters = gp.ListRasters()
&amp;nbsp;&amp;nbsp;&amp;nbsp; ## InputRasters.reset()&amp;nbsp; NOT NECESSARY, the enumeration is new
&amp;nbsp;&amp;nbsp;&amp;nbsp; ## InputRaster = InputRasters.next()&amp;nbsp; # DELETE - this skips to the second record

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:48:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-raster-statistics/m-p/442974#M25256</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-12-11T19:48:57Z</dc:date>
    </item>
  </channel>
</rss>

