Bas Couwenberg

Results 78 comments of Bas Couwenberg

Yes, the [docs](https://thomas.skowron.eu/spaten/) state: > Please note that unless stated otherwise encoding is assumed to be little endian. Converting the data to LE should resolve the issue, I think.

The issue is still present in 1.11.1: https://buildd.debian.org/status/fetch.php?pkg=osmium-tool&arch=s390x&ver=1.11.1-1&stamp=1574312870&file=log

Fedora has a patch to resolve this issue: https://src.fedoraproject.org/rpms/catch1/blob/rawhide/f/catch1-sigstksz.patch This patch has been included in Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7571d22a49cdce0626968667e68638ff2111471e And Debian: https://salsa.debian.org/debian-gis-team/mapbox-variant/-/commit/32514d612a19927725d0caf92735999d1ac4ae22 The catch package in Debian has a different patch: https://sources.debian.org/src/catch/1.12.2-0.1/debian/patches/glib2.34.patch/

Stopping on error is the right thing to do in my opinion, the current behaviour is very good.

It does not, I ran into it with NLExtract, see: https://github.com/nlextract/NLExtract/issues/331#issuecomment-975788906

This also happens when trying to import bagv2: ``` $ ./bagv2/etl/etl.sh -v -a ./bagv2/etl/options/hostname.args INFO: 21-11-18 10:44:52 - Using options_file=options/hostname.args and user_args=-c conf/etl-imbag-2.1.0.cfg -v -a ./bagv2/etl/options/hostname.args 2021-11-18 10:44:52,461 util INFO...

`ast.literal_eval()` does not support the alternative `dict()` syntax: ``` >>> {} {} >>> dict() {} >>> ast.literal_eval('{}') {} >>> ast.literal_eval('dict()') Traceback (most recent call last): File "", line 1, in...

That's just a temporary workaround for using `proj_api.h` with PROJ 6.x. Like `projects.h` in PROJ 6.0.0, `proj_api.h` will be removed in PROJ 7.0.0, so to be compatible with PROJ 6...

The first PROJ 8.0.0 release candidate has been released which removes `proj_api.h`.

The LICENSE file in the root should be for the project itself, it's perfectly fine for individual files to have a different, but compatible, license as documented at the top...