<?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: Extract x,y,z from Raster - script in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731409#M24114</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Wow, that is excellent. Thanks for the replies Bill, Chris and Luke. I needed to know if i was going down a blind alley and it appears I was, but it was an interesting exercise for me anyway.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bill - that was one of my reasons for posting, to get some expert knowledge on programming intricacies built into ArcGIS and issues with the programming process, so I greatly appreciate that. An interesting thing i discovered was that processing a 76x50 grid took 19 min 31 secs from PythonWin yet when attached to an ArcToolbox script it took 8 min 57 sec. Still a ridiculously long time but something of note. We get data from our survey team as an ArcGIS ascii file but sometimes it is adjusted and clients prefer the x,y,z format. So as i get more confident with Python I can play around with your suggestion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Chris - don't you find that then having to add the x and y fields to the point .shp and populating them can take a long time. I've tried this before and it seemed a bit cumbersome, unless I was doing it wrong - or should I do this out in a programming sequence or modelbuilder? And you are right we often touch the 2GB limits with data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Luke - thanks for that. We have a demo version of Spatial Analyst so i will have a look at that. The need for SA within our small team seems to grow. Being a little bit more expensive we have held off and sought out alternatives, like Hawths tools or whatever it is called now (GME?). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Again, thank you all for your time and help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;John&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Oct 2010 07:46:37 GMT</pubDate>
    <dc:creator>JohnLonsdale</dc:creator>
    <dc:date>2010-10-12T07:46:37Z</dc:date>
    <item>
      <title>Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731406#M24111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have raster bathymetry data that i would like to extract the x,y,z values from, whilst also ignoring No Data cells (which on narrow survey passes at a 45° angle to North can be over half the data points). I am an experienced ArcMap 9.3.1 end user but a little rough around the gills in writing Python 2.5 scripts. However I have come up with the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcgisscripting
gp = arcgisscripting.create()

InRaster = "C:\JPL_Jobs\XYZ_TEST\AreaTest2_Clip.img"

wf = open('C:\JPL_Jobs\XYZ_TEST\Create_Test_xyz.txt','w')

Cellsize = gp.GetRasterProperties(InRaster, "CELLSIZEX")
Xul = gp.GetRasterProperties(InRaster, "LEFT")
Yul = gp.GetRasterProperties(InRaster, "TOP")
Ht = gp.GetRasterProperties(InRaster, "ROWCOUNT")
Wd = gp.GetRasterProperties(InRaster, "COLUMNCOUNT")

wf.write("x,y,z\n")
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for j in range(int(Ht)):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i in range(int(Wd)):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XValue = Xul + ((Cellsize * i) + (Cellsize / 2))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YValue = Yul - ((Cellsize * j) + (Cellsize / 2))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XValueStr = str(XValue)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YValueStr = str(YValue)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; d = XValueStr + " " + YValueStr
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cellVal = gp.GetCellValue_management(InRaster, d)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if cellVal &amp;lt;&amp;gt; "NoData" :
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cellValStr = str(cellVal)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lineval = XValueStr + ", " + YValueStr + ", " + cellValStr + "\n"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wf.write(lineval)
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print gp.GetMessages()

wf.close()
print "Finished"&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This works but my question is, on a very small 6x6 grid it took 11 secs. I am currently looking at a 9400 x 9300 bathymetry raster (a typical size) and wonder whether using this method just simply won't be up to the task, taking far too long to process? Or am I going about this task in the wrong way? I have used the Raster2xyz vba script in the past which has worked fine but i believe ArcGIS 10 is not supporting VB. Our team is switching soon but I am not keen (just yet!).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As an aside, typing 9.3 into arcgisscripting.create() caused the script to fail. Any thoughts on why that might be?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you in advance&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;John&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Oct 2010 12:16:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731406#M24111</guid>
      <dc:creator>JohnLonsdale</dc:creator>
      <dc:date>2010-10-11T12:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731407#M24112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I would just use the RasterToPoint tool. NoData values are not exported... Specify a .shp output as that is the vector format that SpatialAnalyst writes to directly (FGDB is a post process!). Took my machine 3 min 14sec for a 7364 x 4454 cell raster. Be mindful of keeping the .dbf file under 2.1 GB. Once in .shp (.dbf) format, you quite readily have your x,y,z database.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I should note that RasterToAscii only took 16 seconds overall to run on the same raster, but you would need to include the added overhead of writing/processing a function to give you the cell center x/y pairs.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Oct 2010 15:44:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731407#M24112</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2010-10-11T15:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731408#M24113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Use the Spatial Analyst "sample" tool/function - &lt;/SPAN&gt;&lt;A href="http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?id=6230&amp;amp;pid=6215&amp;amp;topicname=Sample" rel="nofollow noopener noreferrer" target="_blank"&gt;http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?id=6230&amp;amp;pid=6215&amp;amp;topicname=Sample&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;E.g in the raster calculator (as at 9.3) &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;c:\temp\test_zxy.txt = sample(somegrid)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The output is tab-delimited ZXY format.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
somegrid&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp; y
0.2306625&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.5&amp;nbsp;&amp;nbsp;&amp;nbsp; 9.5
0.2572387&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.5&amp;nbsp;&amp;nbsp;&amp;nbsp; 9.5
0.3041072&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.5&amp;nbsp;&amp;nbsp;&amp;nbsp; 9.5
0.01269815&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.5&amp;nbsp;&amp;nbsp;&amp;nbsp; 9.5
0.9818037&amp;nbsp;&amp;nbsp;&amp;nbsp; 4.5&amp;nbsp;&amp;nbsp;&amp;nbsp; 9.5
etc...
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:13:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731408#M24113</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2021-12-12T07:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731409#M24114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Wow, that is excellent. Thanks for the replies Bill, Chris and Luke. I needed to know if i was going down a blind alley and it appears I was, but it was an interesting exercise for me anyway.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bill - that was one of my reasons for posting, to get some expert knowledge on programming intricacies built into ArcGIS and issues with the programming process, so I greatly appreciate that. An interesting thing i discovered was that processing a 76x50 grid took 19 min 31 secs from PythonWin yet when attached to an ArcToolbox script it took 8 min 57 sec. Still a ridiculously long time but something of note. We get data from our survey team as an ArcGIS ascii file but sometimes it is adjusted and clients prefer the x,y,z format. So as i get more confident with Python I can play around with your suggestion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Chris - don't you find that then having to add the x and y fields to the point .shp and populating them can take a long time. I've tried this before and it seemed a bit cumbersome, unless I was doing it wrong - or should I do this out in a programming sequence or modelbuilder? And you are right we often touch the 2GB limits with data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Luke - thanks for that. We have a demo version of Spatial Analyst so i will have a look at that. The need for SA within our small team seems to grow. Being a little bit more expensive we have held off and sought out alternatives, like Hawths tools or whatever it is called now (GME?). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Again, thank you all for your time and help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;John&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Oct 2010 07:46:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731409#M24114</guid>
      <dc:creator>JohnLonsdale</dc:creator>
      <dc:date>2010-10-12T07:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731410#M24115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here's some Python code that will take an ascii file (output of the ArcGIS RastertoAscii tool, for which no SA license is needed), and reformat it to a .csv file with x, y, z values (x and y are cell centers). Note that depending on the particulars of your DEM, the .csv file will generally be much larger than the input ascii file. This script could easily be altered so as to write the xyz stuff to a binary format like a .dbf, .shp, FGDB, etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# Description: Format an ascii text file (created using the RasterToAscii in ArcGIS) as a comma delimited .csv file containing x, y, z values
# Written By: Chris Snyder, 20101012
import os
inputAsciiDemFile = r"D:\csny490\dems\dem90m\dem90.txt" #ascii file created using the RasterToAscii in ArcGIS 
outputCsvFile = r"D:\csny490\temp\test.csv" #output comma delimited file ascii file (x,y,z fields)
if os.path.exists(outputCsvFile):
&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(outputCsvFile)
inputLines = open(inputAsciiDemFile, 'r')
nColumns = int(inputLines.next().split(" ")[-1])
nRows = int(inputLines.next().split(" ")[-1]) 
xCorner = float(inputLines.next().split(" ")[-1]) 
yCorner = float(inputLines.next().split(" ")[-1]) 
cellSize = float(inputLines.next().split(" ")[-1]) 
nodataValue = int(inputLines.next().split(" ")[-1])
print &amp;gt;&amp;gt; open(outputCsvFile, 'a'), "X,Y,Z"
outputLines = open(outputCsvFile, 'a')
lineCounter = 0
for inputLine in inputLines:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if divmod(lineCounter,100)[1] == 0:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Processing row " + str(lineCounter) + " of " + str(nRows) + "..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; lineCounter = lineCounter + 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; valueList = [float(value) for value in inputLine.split(" ") if value != '\n']
&amp;nbsp;&amp;nbsp;&amp;nbsp; columnCounter = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; for rasterValue in valueList:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; columnCounter = columnCounter + 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if rasterValue != nodataValue:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xCoord = xCorner + (columnCounter - 1) * cellSize + cellSize / 2
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yCoord = yCorner + (nRows - lineCounter) * cellSize + cellSize / 2
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outputLines.write(str(xCoord) + "," + str(yCoord) + "," + str(rasterValue) + "\n")
outputLines.close()
inputLines.close()&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:13:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731410#M24115</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2021-12-12T07:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731411#M24116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another option, once GDAL 1.8.0 is released (&lt;/SPAN&gt;&lt;A href="http://www.gdal.org"&gt;http://www.gdal.org&lt;/A&gt;&lt;SPAN&gt;) is to use the GDAL command line tool "gdal_translate" (or the very useful python bindings, but that's a whole nuther ballgame) to convert to XYZ - &lt;/SPAN&gt;&lt;A href="http://www.gdal.org/frmt_xyz.html"&gt;http://www.gdal.org/frmt_xyz.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to try this out now, prebuilt binaries of the 1.8.0 development&amp;nbsp; version are available at &lt;/SPAN&gt;&lt;A href="http://vbkto.dyndns.org/sdk/"&gt;http://vbkto.dyndns.org/sdk/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The command line syntax would be something like:&lt;/SPAN&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;gdal_translate -of XYZ inraster outxyz.txt&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Oct 2010 22:41:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731411#M24116</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2010-10-12T22:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731412#M24117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;..........&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Oct 2010 21:43:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731412#M24117</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2010-10-13T21:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731413#M24118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris -&lt;/P&gt;&lt;P&gt;I was about to try your script, but my coordinates are longitude, latitude, elevation. Is your script able to compute the center of the cells correctly when dealing with degrees, or should this script only be used with coordinates in linear units?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Frances&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Oct 2019 05:29:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731413#M24118</guid>
      <dc:creator>FrancesBiles1</dc:creator>
      <dc:date>2019-10-25T05:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731414#M24119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Francis -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In it's current state it will only work with planar coordinate systems (State Plane, UTM, etc.).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another way to do what you need is to use the "Raster To Point" tool and just add/calc a Lat and Long field to the table. Since geometry is produced (in addition to tabular records) this method would take longer, but should yield you your necessary outcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Oct 2019 16:33:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731414#M24119</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2019-10-28T16:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extract x,y,z from Raster - script</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731415#M24120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the clarification Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Oct 2019 23:49:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/extract-x-y-z-from-raster-script/m-p/731415#M24120</guid>
      <dc:creator>FrancesBiles1</dc:creator>
      <dc:date>2019-10-28T23:49:21Z</dc:date>
    </item>
  </channel>
</rss>

