From 51667eb41b18643ed0c9d053b4bd552d212659c5 Mon Sep 17 00:00:00 2001 From: leavauchier <120112647+leavauchier@users.noreply.github.com> Date: Mon, 5 Aug 2024 14:32:26 +0200 Subject: [PATCH] Bump version to 0.2.0 (#21) --- RELEASE_NOTES.md | 11 ++++++++--- pdal_ign_macro/version.py | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index bd4944d..515840f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,9 @@ -### 0.1.1 +## 0.2.0 +- Update algorithm for DxM marking in [mark_points_to_use_for_digital_models_with_new_dimension](pdal_ign_macro/mark_points_to_use_for_digital_models_with_new_dimension.py) +- Add a temporary buffer on the las input to prevent side effects on tile borders +- Remove temporary extra dimensions added during points marking + +### 0.1.1 Fix arguments that are passed from argparse to the main function @@ -8,9 +13,9 @@ Contains 2 pdal filters: - radius_assign - grid_decimation_deprecated (contains fixes that are not implemented in the pdal GridDecimation filter as of 2024-06) -Contains python macros in [text](macro/macro.py): +Contains python macros in [macro.py](macro/macro.py): - add_radius_assign (to apply radius assign with conditions) with 3d radius, 2d radius and 2d radius with upper/lower bounds in Z - 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: [mark_points_to_use_for_digital_models_with_new_dimension.py](scripts/mark_points_to_use_for_digital_models_with_new_dimension.py) diff --git a/pdal_ign_macro/version.py b/pdal_ign_macro/version.py index 1af24b7..cf50012 100755 --- a/pdal_ign_macro/version.py +++ b/pdal_ign_macro/version.py @@ -1,4 +1,4 @@ -__version__ = "0.1.1" +__version__ = "0.2.0" if __name__ == "__main__":