copc-lib icon indicating copy to clipboard operation
copc-lib copied to clipboard

copc-lib provides an easy-to-use reader and writer interface for creating and reading Cloud Optimized Point Clouds, with bindings for Python and C++

Results 10 copc-lib issues
Sort by recently updated
recently updated
newest added

updates: - [github.com/pre-commit/pre-commit-hooks: v4.2.0 → v6.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.2.0...v6.0.0) - https://github.com/psf/black → https://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 22.8.0 → 25.11.0](https://github.com/psf/black-pre-commit-mirror/compare/22.8.0...25.11.0)

Hey all, when tyring to use example_reader.py I get the following error at line 43 ( print("WKT: %s" % reader.copc_config.wkt)): UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd5 in position 989:...

The constructor of copc::FileReader calls initialization functions which may throw an exception. When an exception is thrown, the construction of the copc::FileReader object is interrupted and its deconstructor will not...

``` >>> list(reader.copc_config.las_header.min) Traceback (most recent call last): File "", line 1, in TypeError: 'copclib._core.Vector3' object is not iterable ```

More info here https://github.com/catchorg/Catch2/releases/tag/v3.0.1

We currently don't offer the option to not write that VLR, since it's not in the COPC specs anymore we should probably provide that option.

```python point.red = 65537 ``` The above code will throw this error: > TypeError: (): incompatible function arguments. The following argument types are supported: > 1. (arg0: copclib._core.Point, arg1: int)...