Skip to content

Commit

Permalink
refactor(#1): remove redundant parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianSolberg committed Oct 15, 2025
1 parent 37a9363 commit 433026f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lasConverter.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pyproj import Transformer


def CSV_2_LAS(surveys_folders, output_folder, output_name="merged_final1.las", chunk_size_bytes="64MB", max_points_per_file=10_000_000):
def CSV_2_LAS(surveys_folders, output_folder, output_name="merged_final1.las", chunk_size_bytes="64MB"):
surveys_path = Path(surveys_folders)
output_folder = Path(output_folder)
output_folder.mkdir(parents=True, exist_ok=True)
Expand Down

0 comments on commit 433026f

Please sign in to comment.