<?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: Raster to Point - Converting Multiple Files at a Time in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132307#M49803</link>
    <description>&lt;P&gt;Interesting. I haven't batched anything since pre-Windows DOS. &amp;nbsp;I'll have to give this a look.&lt;/P&gt;&lt;P&gt;Also wondering if I could merge several layers and run R-t-P on the new merge file?&lt;/P&gt;</description>
    <pubDate>Tue, 11 Jan 2022 03:01:58 GMT</pubDate>
    <dc:creator>ScottFraser_Key-West</dc:creator>
    <dc:date>2022-01-11T03:01:58Z</dc:date>
    <item>
      <title>Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132253#M49790</link>
      <description>&lt;P&gt;I've got about 200 DEM LiDAR raster files. Using the "Raster to Point" tool easily converts the cell data to points, but it'll be a slow process if I have to convert every file individually.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is there a tool in Pro that'll allow me to select multiple raster files at time for point conversion?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 23:11:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132253#M49790</guid>
      <dc:creator>ScottFraser_Key-West</dc:creator>
      <dc:date>2022-01-10T23:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132268#M49793</link>
      <description>&lt;P&gt;you will have to code it&lt;/P&gt;&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;or you can create a temporary batch tool and edit it to do 100's.&lt;/P&gt;&lt;P&gt;Below is an example of just creating a batch for 2 rasters.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="batch_temp_tools.png" style="width: 159px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/31150i622D49F140B492FE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="batch_temp_tools.png" alt="batch_temp_tools.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;arcpy.Tmp.BatchRasterToPoint("topo2raster.tif;Extract_topo1.tif",
 \RasterToPoint_OutPointFeatures_%Name%",
 "Value")
# or
in_rasters = #  use ListRasters to get the semi-colon list above
gdb = r"C:\Arc_projects\Test_29\Test_29.gdb"
base_name = "Out_"
arcpy.Tmp.BatchRasterToPoint(in_rasters, f"{gdb}\\{base_name}_{%Name%}")&lt;/LI-CODE&gt;&lt;P&gt;totally untested though&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 00:19:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132268#M49793</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-01-11T00:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132307#M49803</link>
      <description>&lt;P&gt;Interesting. I haven't batched anything since pre-Windows DOS. &amp;nbsp;I'll have to give this a look.&lt;/P&gt;&lt;P&gt;Also wondering if I could merge several layers and run R-t-P on the new merge file?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 03:01:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132307#M49803</guid>
      <dc:creator>ScottFraser_Key-West</dc:creator>
      <dc:date>2022-01-11T03:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132313#M49806</link>
      <description>&lt;P&gt;What you are doing will determine an appropriate solution.&lt;/P&gt;&lt;P&gt;I can only assume that raster to point is for some reason, since I would not normally want a bunch of closely spaced points holding the data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would use RasterToNumPyArray if the spatial location of all the data were coincident.&amp;nbsp; &amp;nbsp;You can make a multidimensional array,&amp;nbsp; The location (x, y) values of the cells can be determined and the multiple layers hold information from different layers occupying the same space.&lt;/P&gt;&lt;P&gt;If the rasters are adjacent I probably would only use points if the Z values were floats/doubles and I had to retain every last decimal place, otherwise I would convert to polygon using an appropriate reclassification.&lt;/P&gt;&lt;P&gt;Your end use isn't specified, so no specific recommendations can be made&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 04:52:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132313#M49806</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-01-11T04:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132392#M49814</link>
      <description>&lt;P&gt;...or use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/spatial-analyst/extract-multi-values-to-points.htm" target="_self"&gt;ExtractMultiValuesToPoints&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For this you'll run RasterToPoint once and then use that output to extract the values from all the remaining rasters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 11:39:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132392#M49814</guid>
      <dc:creator>SteveLynch</dc:creator>
      <dc:date>2022-01-11T11:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132398#M49816</link>
      <description>&lt;P&gt;The goal is to display elevation measurements every three feet.&lt;BR /&gt;&lt;BR /&gt;So... I run RasterToPoint once, then use ExtractMultiValuesToPoints on multiple other companion raster files, directing the results into the first RTP result file? &amp;nbsp;Sound like that might result in one larger merged file... Interesting.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The files were downloaded from five large geographical LiDAR blocks stretching 180 miles, with each block having about 50 files and some 28m points in each file. With the size of these ultimate files, I'm guessing it'd make sense to keep these blocks of points separate, thinking that five smaller blocks should be easier to utilize than one massive point file. Does this sound appropriate?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 12:12:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132398#M49816</guid>
      <dc:creator>ScottFraser_Key-West</dc:creator>
      <dc:date>2022-01-11T12:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132401#M49817</link>
      <description>&lt;P&gt;An image would help.&amp;nbsp; Converting raster to point isn't going to help with a display issue.&amp;nbsp; And a point file covering the same spatial extent as an equivalent raster is going to be many times larger.&amp;nbsp; So I am still not seeing any advantage of a point file for visualization purposes&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 12:27:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132401#M49817</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-01-11T12:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132529#M49826</link>
      <description>&lt;P&gt;We display the elevation measurements for a variety of floodplain management purposes, both for staff, construction and the general public.&lt;/P&gt;&lt;P&gt;In the following example, the LiDAR measurements are shown in black. The measurements in red are ground-proofed Surveyor measurements, used for comparison to validate the accuracy of the LiDAR in given areas.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 968px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/31217i0250F84BF3E06D11/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 17:42:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132529#M49826</guid>
      <dc:creator>ScottFraser_Key-West</dc:creator>
      <dc:date>2022-01-11T17:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132761#M49862</link>
      <description>&lt;P&gt;Right click the&amp;nbsp;&lt;SPAN&gt;"Raster to Point" tool&amp;nbsp;and select "Batch".&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 08:21:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132761#M49862</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2022-01-12T08:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132820#M49876</link>
      <description>&lt;P&gt;that was suggested earlier with possibilities to code it... they have a large number to process so manual selection would be out of the question&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 12:00:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132820#M49876</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-01-12T12:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132822#M49877</link>
      <description>&lt;P&gt;viewed at such a small extent, I can see the utility,&amp;nbsp;&lt;/P&gt;&lt;P&gt;carefully selecting areas which may be of interest prior to processing will certainly cut down on your output data size&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you try the suggestions&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 12:03:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132822#M49877</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-01-12T12:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132844#M49884</link>
      <description>&lt;P&gt;Rather than have all the rasters in the map, you can browse to the rasters and using shift click select first and last. This is much quicker than manually adding them.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 13:41:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132844#M49884</guid>
      <dc:creator>SteveLynch</dc:creator>
      <dc:date>2022-01-12T13:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132926#M49893</link>
      <description>&lt;P&gt;Didn't seem to allow shift-click on multiple files. Would only accept one at a time. However, the suggestion of batching them via the right-click is much more efficient.&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 16:09:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132926#M49893</guid>
      <dc:creator>ScottFraser_Key-West</dc:creator>
      <dc:date>2022-01-12T16:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132928#M49894</link>
      <description>&lt;P&gt;Oh yeah... much easier. Wasn't aware there was a batch option hiding under the right-click.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Luke.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 16:12:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132928#M49894</guid>
      <dc:creator>ScottFraser_Key-West</dc:creator>
      <dc:date>2022-01-12T16:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132962#M49897</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="r2p.jpg" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/31310i6FE3031C679AF32E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="r2p.jpg" alt="r2p.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; click on the first raster and then shift click on the last raster&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 16:51:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132962#M49897</guid>
      <dc:creator>SteveLynch</dc:creator>
      <dc:date>2022-01-12T16:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Raster to Point - Converting Multiple Files at a Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132988#M49899</link>
      <description>&lt;P&gt;Just figured out how to do what you suggested about selecting multiple files. I'd been trying to select multiple files from within the "Batch Raster to Point" pane.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Then it dawned on me, multiple files can be selected in the "Contents" panel and dragged to the "Batch Raster to Point" pane and they'll be added to the batch. Ah ha!&lt;BR /&gt;&lt;BR /&gt;As my father used to say:&amp;nbsp; "Finally, light dawns on Marble Head."&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;&lt;BR /&gt;thanks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 17:20:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/raster-to-point-converting-multiple-files-at-a/m-p/1132988#M49899</guid>
      <dc:creator>ScottFraser_Key-West</dc:creator>
      <dc:date>2022-01-12T17:20:12Z</dc:date>
    </item>
  </channel>
</rss>

