Skip to content

Commit

Permalink
PDAL 2.7: Preserve extra dims in imported COPC
Browse files Browse the repository at this point in the history
  • Loading branch information
craigds committed Oct 13, 2024
1 parent c82521d commit 3769760
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion kart/point_cloud/pdal_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ def convert_tile_to_copc(source, dest):
"type": "readers.las",
"filename": str(source),
},
{"type": "writers.copc", "filename": str(dest), "forward": "all"},
{
"type": "writers.copc",
"filename": str(dest),
"forward": "all",
"extra_dims": "all",
},
]
try:
pdal_execute_pipeline(pipeline)
Expand Down

0 comments on commit 3769760

Please sign in to comment.