Hi there,
I have a 3D object in .las format which contains RGB values for each point in the point cloud. The goal is to get this object into an Esri .slpk format and keep the RGB values so the final object is colored correctly.
The .las file doesn't have a coordinate system but has relative xyz values; seems like the object is centered at 0,0. When using the CoordinateSystemSetter, it doesn't seem to change the XY values at all. This is just part of the problem.
The other problem is when I try to write out to .slpk using the Esri SLPK writer, I get this error:
The layer requires triangular mesh geometries. Features whose geometries cannot be triangulated will not be written
How do I convert the .las file into a triangular mesh so that it can be written to SLPK? Is this possible? Do I need a different input format? Other options could be .xyz or .pcd for the input file.
I haven't really worked in this space before so any guidance for working with 3D would be helpful. Thanks!