From 1c9939db73795f7a9a1015383b4ddf166b678866 Mon Sep 17 00:00:00 2001 From: leavauchier <120112647+leavauchier@users.noreply.github.com> Date: Wed, 12 Jun 2024 08:48:09 +0200 Subject: [PATCH] Version 0.1.0 with release note (#9) --- RELEASE_NOTES.md | 12 ++++++++++++ macro/version.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 RELEASE_NOTES.md diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md new file mode 100644 index 0000000..348e4d7 --- /dev/null +++ b/RELEASE_NOTES.md @@ -0,0 +1,12 @@ +## 0.1.0 + +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): +- 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) \ No newline at end of file diff --git a/macro/version.py b/macro/version.py index bb4f2a7..74443dd 100755 --- a/macro/version.py +++ b/macro/version.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0.dev" +__version__ = "0.1.0" if __name__ == "__main__":