I have a number of lidar files in LAS format that I want to convert to one compressed LAZ file. I can read the LAS files with one reader, but when I use the ASPRS Lidar Data Exchange writer to write, it writes multiple LAZ files. This is true even if I set the Compress Files parameter to Yes. How can I get just one LAZ file?
Thanks
Best answer by takashi
Hi Jim,
Maybe the LAS format does not have the function for archiving multiple files.
If the multiple source point cloud features can be treated as parts of one large feature, try using the PointCloudCombiner to transform them into one feature before writing.
Takashi
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
Maybe the LAS format does not have the function for archiving multiple files.
If the multiple source point cloud features can be treated as parts of one large feature, try using the PointCloudCombiner to transform them into one feature before writing.
Takashi
A
Anonymous
January 8, 2015
That worked, Takashi. First I combined the rasters into one raster, then the writer wrote that raster as one LAZ file.