I have a point cloud in ascii format with columns for x, y, z and classification.
I want to extract the values of x and y in two new attributes (as a list) which I can use for further processing. How can I achieve this?
I have a point cloud in ascii format with columns for x, y, z and classification.
I want to extract the values of x and y in two new attributes (as a list) which I can use for further processing. How can I achieve this?
Hi @sraapril,
A great place to start would be to check out this tutorial on reading point clouds. In this article it demonstrates how to pull in a point cloud file and extract xy coordinates. For an larger overview of potential point cloud transformations, please check out our Getting Started with Point Clouds landing page.
Thank you @AnnabelleAtSafe. I used the point cloud splitter to help me achieve this.