Skip to content

Commit

Permalink
Fix aruments to pass to main in script (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
leavauchier authored Jun 12, 2024
1 parent 1c9939d commit 3129acf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.1.1

Fix arguments that are passed from argparse to the main function

## 0.1.0

Contains 2 pdal filters:
Expand All @@ -9,4 +13,4 @@ Contains python macros in [text](macro/macro.py):
- classify_hgt_ground
- keep_non_planar_pts

Contains a python script for DSM/DTM points selection: [text](scripts/mark_points_to_use_for_digital_models_with_new_dimension.py)
Contains a python script for DSM/DTM points selection: [text](scripts/mark_points_to_use_for_digital_models_with_new_dimension.py)
2 changes: 1 addition & 1 deletion macro/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.0"
__version__ = "0.1.1"


if __name__ == "__main__":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,4 +192,4 @@ def main(input_las, output_las, dsm_dimension, dtm_dimension, output_dsm, output

if __name__ == "__main__":
args = parse_args()
main(**args)
main(**vars(args))

0 comments on commit 3129acf

Please sign in to comment.