Hi @nt, you can use the CoordinateExtractor (Mode: Specify Coordinate, Coordinate Index: 0) to extract coordinate values (x, y, z) as attributes after applying the PointCloudCoercer, then write the attributes into the destination CSV file.
Alternatively, you can use the Point Cloud XYZ Writer to directly write a point cloud feature into a text file, without using any transformer. File extension, delimiter, etc. can be specified via the writer parameters. See the help on the writer to learn more: Point Cloud XYZ (POINTCLOUDXYZ) Reader/Writer
Hi @nt, you can use the CoordinateExtractor (Mode: Specify Coordinate, Coordinate Index: 0) to extract coordinate values (x, y, z) as attributes after applying the PointCloudCoercer, then write the attributes into the destination CSV file.
Alternatively, you can use the Point Cloud XYZ Writer to directly write a point cloud feature into a text file, without using any transformer. File extension, delimiter, etc. can be specified via the writer parameters. See the help on the writer to learn more: Point Cloud XYZ (POINTCLOUDXYZ) Reader/Writer
Hi takashi, thanks for your answer. I followed the 1st suggestion and was able to get the coordinates in the csv file. The headers are a bit off and there are 3 commas in front of each entry but I do have the x,y,z coordinates I was looking for.
Thank you.