Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.2.0 #21

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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)
2 changes: 1 addition & 1 deletion pdal_ign_macro/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.1"
__version__ = "0.2.0"


if __name__ == "__main__":
Expand Down