Skip to main content

I am creating xyz files from a DEM Raster using the RasterCellCoercer to create a point feature containing heights from the DEM. I am writing first into an ESRI geodatabase, and then using the coordinate extractor to write X,Y,Z fields to a CSV file then renaming it to *.xyz.

Is there maybe a more straight forward way of doing this? Could I cut out the ESRI Geodatabase and write directly from the RasterCellCoercer into a xyz?

Hi @robertdbuckley, you can transform the DEM raster to a point cloud with the PointCloudCombiner, and then write it into a xyz file with the Point Cloud XYZ writer. You can change the separator character (space by default) through the writer parameter.


Reply