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

Upgrade to PDAL 2.7.2 (from 2.6.0) #1005

Merged
merged 2 commits into from
Oct 14, 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Please note that compatibility for 0.x releases (software or repositories) isn't

_When adding new entries to the changelog, please include issue/PR numbers wherever possible._


## Unreleased
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not for any reason, but our convention so far has been this:

0.15.4 (UNRELEASED)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can change it. is the new convention just as good? Doesn't commit us to necessarily doing another point release; we could end up rolling the change into 0.16.0


- Upgrade to PDAL 2.7 [#1005](https://github.com/koordinates/kart/pull/1005)

## 0.15.3

- Replaces minimal patches with delta-filters - a more general-purpose way of filtering parts (inserts, updates, deletes) of JSON diffs when not all parts are required. [#998](https://github.com/koordinates/kart/pull/998)
Expand Down
7 changes: 6 additions & 1 deletion kart/point_cloud/pdal_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ def convert_tile_to_copc(source, dest):
"type": "readers.las",
"filename": str(source),
},
{"type": "writers.copc", "filename": str(dest), "forward": "all"},
{
"type": "writers.copc",
"filename": str(dest),
"forward": "all",
"extra_dims": "all",
},
]
try:
pdal_execute_pipeline(pipeline)
Expand Down

This file was deleted.

3 changes: 1 addition & 2 deletions vcpkg-vendor/vcpkg-overlay-ports/pdal/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO PDAL/PDAL
REF "${VERSION}"
SHA512 66390a6fc6f898f7d7aa05d4a6ec428e9c7d2f6f0c835110bde2f6c452fa78fb5bf8e8db954153566bf771323bbb31d6153056659c536126721bf7561e91794f
SHA512 953cb0bc3ab79797352a3f8f4abb25b106d29f4057d7097b536c5b8b75a460da0066038e333581754239848cc9407d5e11c05678fe645b2115a02ea203b5be57
HEAD_REF master
PATCHES
fix-dependency.patch
fix-find-library-suffix.patch
no-pkgconfig-requires.patch
no-rpath.patch
install-dimbuilder.patch
arbiter-aws-no-sign-request.patch # Merged upstream: https://github.com/connormanning/arbiter/pull/48
)

# Prefer pristine CMake find modules + wrappers and config files from vcpkg.
Expand Down
4 changes: 2 additions & 2 deletions vcpkg-vendor/vcpkg-overlay-ports/pdal/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pdal",
"version": "2.6.0",
"version": "2.7.2",
"port-version": 1,
"description": "PDAL - Point Data Abstraction Library is a library for manipulating point cloud data.",
"homepage": "https://pdal.io/",
Expand Down Expand Up @@ -111,4 +111,4 @@
]
}
}
}
}
Loading