Skip to content
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# dev

# v3.0.1
- lib: use latest ign-pdal-tools (v1.15.8): las buffer: handle different prefix to handle millesime.

# v3.0.0
- use pdal>=2.9 and deactivate the Dockerfile.pdal from CI
- [BREAKING CHANGE] Add a [main.py](las_digital_models/main.py) to run the whole pipeline at once (buffer, DTM, DSM, DHM). Use temporary folders for intermediate values. Refactor config files.
Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@
# --------------------
# Environment creation
# --------------------
create:
mamba env create -n las_digital_models

# mamba env update also works when environment does not exist yet
install:
mamba env update -n las_digital_models -f environment.yml

install-debug:
mamba env update -n las_digital_models -f environment.yml --dry-run -v

install-precommit:
pre-commit install

Expand Down
18 changes: 9 additions & 9 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- anaconda
dependencies:
- python==3.10.*
- python==3.12.*
- pip
- pytest
- gdal
Expand All @@ -15,18 +15,18 @@ dependencies:
- python-pdal>=3.4.0
- geopandas
- parallel
# --------- hydra configs --------- #
- hydra-core==1.2.*
- hydra-colorlog==1.2.*
# --------- build and deploy lib -- #
- build
- rasterstats
- rasterio
# --------- hydra configs --------- #
- hydra-core
- hydra-colorlog
# --------- build and deploy lib -- #
- twine
# --------- linting --------------- #
- black
- flake8
- isort
- pre-commit
- pip:
- ign-pdal-tools
- rasterstats
- rasterio # moved here since pdal>=2.9.0 force modern libs to be used and make dependancy graph non resolved
- build
- ign-pdal-tools
2 changes: 1 addition & 1 deletion las_digital_models/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.0.0"
__version__ = "3.0.1"


if __name__ == "__main__":
Expand Down