tmontaigu / pylas

⚠️ pylas was merged into laspy 2.0 https://github.com/laspy/laspy⚠️
BSD 3-Clause "New" or "Revised" License
39 stars 13 forks source link

Rework LasReader & add LasWriter #16

Closed tmontaigu closed 4 years ago

tmontaigu commented 4 years ago

The goal is to allow reading file by chunk of points (eg 1 million points at a time) and also to be able to write points to a file by chunk as opposed to the current implementation that only allows reading / writting the whole file at once.

This should allow to handle big files and be able to do some processing that don't require the file to be read / written its in entirety at once(like splitting, computing some stats, etc)

Todo list: