Skip to content

Commit

Permalink
Merge branch 'main' of github.com:IGNF/pdal_ign_plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
alavenant committed Dec 18, 2023
2 parents bd859ee + a8db293 commit 8a01c92
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/cicd_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
push:
branches:
- main
paths-ignore:
- 'doc/**'

env:
DOCKER_REPO: ignimagelidar/pdal_ign_plugin
Expand All @@ -21,8 +23,14 @@ jobs:
- name: install cppunit
run: sudo apt install -y libcppunit-dev

- name: compil
run: build.sh
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: pdal_ign_plugin
environment-file: ./environment.yml
auto-activate-base: true

- name: compil_plugins
run: source ./ci/build.sh

- name: Login to Docker Hub
uses: docker/login-action@v2
Expand Down
9 changes: 6 additions & 3 deletions doc/grid_decimation.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ This example transform highest points of classification 5 in classification 9, o
"file-input.las",
{
"type": "filters.gridDecimation",
"output_type":"max",
"output_name_attribut": "grid"
"output_type":"max",
"output_name_attribut": "grid",
"output_wkt":"file-output.wkt"
},
{
"type":"writers.las",
Expand All @@ -34,4 +35,6 @@ Options
**resolution** :
The resolution of the cells in meter. [Default: 1.]

**output_name_attribut**: The name of the new attribut. [Default: grid]
**output_name_attribut**: The name of the new attribut. [Default: grid]

**output_wkt**: the name of the export grid file as wkt polygon. If none, no export [Default:""]

0 comments on commit 8a01c92

Please sign in to comment.