-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Point cloud tiler based on epf #134
Comments
I like the idea of having a purpose-built tiler outside of PDAL. Having something here in Untwine would be quite useful and flexible and allow the same EPF code to be reused.
writer-options.json
|
You'd have to say what you really want. If you stop the process at the end of the tiling step, you have exactly that...tiled points. But I'm assuming that you want LAZ files as output. You can certainly add a step that LAZ-ifies the data in each tile. But doing this as the process runs (rather than write raw data) is a deal because you'll end up with the same problem (too many files open) that |
I think the brain-dead approach of doing a second pass to LAZ-ify raw point data would be fine, at least for the initial implementation - and it could get optimized in the future if needed... |
It would be useful to have a command for tiling of input data (using a fixed geographical square size, e.g. 1000 meters) based on untwine's epf code. Compared to
pdal tile
, it would run in parallel, and not running out of open files allowed by OS.The text was updated successfully, but these errors were encountered: