Solved

Is there anyway I can use the rasterCellcoercer to write directly into an xyz file?

  • 20 February 2018
  • 1 reply
  • 11 views

Badge

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?

icon

Best answer by takashi 20 February 2018, 17:21

View original

1 reply

Userlevel 2
Badge +17

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