I have a point data in this format
Uint8Array
(1434544) [170, 189, 128, 65, 141, 54, 182, 65, 218, 50, 12, 192, 61, 247, 134, 194, 242, 169, 128, 65, ...]
It is Uint8Array and represent point data of point cloud in format of x, y, z, and i where each is 4 bytes making each point 16 bytes.
The data array is list of point in byte stream or typedarray for points
How can i transformed this data to retrive x, y, z and i of each point?
Any help please