Select to view content in your preferred language

XYZ elevation data - better support

215
1
06-19-2025 04:04 AM
Status: Open
Labels (1)
SimonSchütte_ct
MVP Regular Contributor

Please add better support for XYZ elevation data.

Sample files can be found here: Digitales Geländemodell

It is not possible to drag-and-drop the files in ArcGIS Pro:

SimonSchtte_ct_0-1750330482698.png

 

It is necessary to create a folder connection to where the XYZ file is located and add the data from within ArcGIS Pro.

SimonSchtte_ct_1-1750330570486.png

Now it is possible to drag and drop the data from the catalog or add it to the map:

SimonSchtte_ct_2-1750330588771.png

Please add support for XYZ data to be used directly as Elevation Data in ArcGIS Pro.
Currently we have to export it to Raster before we can use it as elevation source.

SimonSchtte_ct_3-1750330716658.png

It is already correctly rendered in the Map View, so why can´t we use it as elevation?

SimonSchtte_ct_4-1750330999050.png

(I tried it and it did not work)

SimonSchtte_ct_0-1750332432249.png

 



(ArcGIS Pro 3.5)

 

1 Comment
RTPL_AU

If they are proper XYZ files I run them through this batch script.
Getting easy native support will earn a dev a cookie.

set gdal_translate="C:\anotherdesktopgiswithgdal\gdal_translate.exe"
set "src_dir=C:\XYZ"
set "dst_dir=C:\XYZ_tif"

for %%f in ("%src_dir%\*.xyz") do (
set "src_file=%%~nxf"
set "dst_file=!src_file:.xyz=.tif!"
%gdal_translate% -if XYZ -of GTiff "%src_dir%\!src_file!" "%dst_dir%\!dst_file!"
)

gdal_translate  -if INPUTTYPE -of GTiff  Source Destination

I'm sure with GDAL you can make it much more advanced but this takes seconds for the large-ish files I get and then I run them through a batch clip GP and assign coordsys etc in Pro so I get what I want in the final FGDB.