Epic 147F: Python 3D Tiles export bindings - #106
Merged
Conversation
Add export_tiles3d and export_copc_tiles3d to the Python extension: export_tiles3d builds an octree tileset from a PointCloud, and export_copc_tiles3d converts a .copc.laz file into a bounded tileset without materializing the whole cloud. Both return a byte/point/tile receipt dict. Add typed .pyi stubs and smoke tests for the wheel build gate.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Exposes the Epic 147 3D Tiles surface to Python.
Changes
export_tiles3d(cloud, out_dir, max_points_per_tile, max_depth)— builds an octree tileset from aPointCloud.export_copc_tiles3d(copc_path, out_dir, max_level)— converts a.copc.lazfile into a bounded tileset without materializing the whole cloud.tileset_json_bytes,tile_count,point_count,pnts_bytes..pyistubs added; smoke tests added to the wheel build gate.Verification
cargo build --manifest-path crates/spatialrust-py/Cargo.toml— compiles