Skip to content

Commit

Permalink
fix doc + rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
alavenant committed May 29, 2024
1 parent 213c7b1 commit 6bd89a5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions doc/radius_assign.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Options

**is3d**: Search in 3d (as a ball). [Default: false]

**is2d_above**: If search in 2d : upward maximum distance in Z for potential neighbors (corresponds to a search in a cylinder with a height = is2d_above above the source point). Default (0) = infinite height [Default: 0.]
**max2d_above**: If search in 2d : upward maximum distance in Z for potential neighbors (corresponds to a search in a cylinder with a height = max2d_above above the source point). Default (0) = infinite height [Default: 0.]

**is2d_below**: If search in 2d : upward maximum distance in Z for potential neighbors (corresponds to a search in a cylinder with a height = is2d_below below the source point). Default (0) = infinite height [Default: 0.]
**max2d_below**: If search in 2d : upward maximum distance in Z for potential neighbors (corresponds to a search in a cylinder with a height = max2d_below below the source point). Default (0) = infinite height [Default: 0.]

11 changes: 5 additions & 6 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@ dependencies:
- pdal
- python-pdal
- gdal
- cmake
- pip
- pip:
- ign-pdal-tools
# --------- dev dep --------- #
- cmake
- pre-commit # hooks for applying linters on commit
- black # code formatting
- isort # import sorting
- flake8 # code analysis
- pytest


# --------- pip & pip librairies --------- #
- pip
- pip:
- ign-pdal-tools
2 changes: 1 addition & 1 deletion macro/ex_filtering_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

def parse_args():
parser = argparse.ArgumentParser("Tool to apply pdal pipelines to modify classification")
parser = argparse.ArgumentParser("Tool to apply pdal pipelines for DSM and DTM calculation")
parser.add_argument("--input", "-i", type=str, required=True, help="Input las file")
parser.add_argument("--output_las", "-o", type=str, required=True, help="Output cloud las file")
parser.add_argument("--output_dsm", "-s", type=str, required=True, help="Output dsm tiff file")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

def parse_args():
parser = argparse.ArgumentParser("Tool to apply pdal pipelines to modify classification")
parser = argparse.ArgumentParser("Tool to apply pdal pipelines for DSM and DTM calculation (with add attributs for the concerned points)")
parser.add_argument("--input", "-i", type=str, required=True, help="Input las file")
parser.add_argument("--output_las", "-o", type=str, required=True, help="Output cloud las file")
parser.add_argument("--output_dsm", "-s", type=str, required=True, help="Output dsm tiff file")
Expand Down

0 comments on commit 6bd89a5

Please sign in to comment.