-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 0.1.0 with release note (#9)
- Loading branch information
1 parent
e3d21dc
commit 1c9939d
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.1.0.dev" | ||
__version__ = "0.1.0" | ||
|
||
|
||
if __name__ == "__main__": | ||
|