Replies: 1 comment
-
Thus it does not provide information about a las/laz file on disk but about a generic point cloud read from a source. The concept of point data record format is specific to LAS and does not exist in the PCD format for instance. This is consequently not an information retained internally. This is not technically impossible but I'd like to write less and less LAS specific code in pipeline = reader() + write_pcd()
exec(pipeline, on = "file.las") |
Beta Was this translation helpful? Give feedback.
-
I am wondering if it would make sense to add some option to get further pointcloud information.
As far as I can see we currently have
summarise()
which provides information about point data records for an in-memory pointcloud, and we haveinfo()
which provides information about a las/laz file on disk.Would it make sense to extend
info()
to print additional information which is available in the header, e.g. to get the point data format?I know we could use
lidR::readLASheader()
, but initially I expectedinfo()
to provide this information as well.Beta Was this translation helpful? Give feedback.
All reactions