[gdal-dev] Antwort: Re: Build static GDAL-Lib and static GDAL-Apps

2024-02-12 Thread Michael Otto via gdal-dev
still linked dynamically. This should be changed ;o). Best regards Michael Von:"Robert Coup" An: "Michael Otto" Kopie: gdal-dev@lists.osgeo.org Datum: 12.02.2024 15:43 Betreff:Re: [gdal-dev] Build static GDAL-Lib and static GDAL-Apps Hi Michael, On Mon, 12

[gdal-dev] Antwort: Re: Build static GDAL-Lib and static GDAL-Apps

2024-02-20 Thread Michael Otto via gdal-dev
Von:"Robert Coup" An: "Michael Otto" Kopie: gdal-dev@lists.osgeo.org Datum: 12.02.2024 15:43 Betreff:Re: [gdal-dev] Build static GDAL-Lib and static GDAL-Apps Hi Michael, On Mon, 12 Feb 2024 at 12:02, Michael Otto via gdal-dev < gdal-dev@lists.

[gdal-dev] Antwort: Re: Build static GDAL-Lib and static GDAL-Apps

2024-02-20 Thread Michael Otto via gdal-dev
Thanks to all who have responded. I have now tried it with 'vcpkg install gdal[tools]'. The tools/apps are there, but they are not statically linked! See for example gdalinfo: root@vmuser-VirtualBox:/home/vmuser/Git/vcpkg/installed/x64-linux/tools/gdal# ldd gdalinfo linux-vdso.so.1

[gdal-dev] Antwort: Re: Re: Build static GDAL-Lib and static GDAL-Apps

2024-02-21 Thread Michael Otto via gdal-dev
Hello Robert, I've also tried the problem with libtiff, but couldn't solve it. Thanks for the tip! With "gdal[core,tools]" the apps are now static. BUT I want to use exactly what is still causing problems: SQLite for the creation of MBTiles (possibly GPKG) . That doesn't seem to work then

[gdal-dev] Build static GDAL-Lib and static GDAL-Apps

2024-02-12 Thread Michael Otto via gdal-dev
Hello, I have been trying for some time to compile GDAL and the GDAL apps as a static library / executable programs. The goal is to cast GDAL and all its dependencies (PROJ / GEOS / all dependencies to system libraries / ...) into a static library and to create the GDAL apps as static

[gdal-dev] Better way to merge MBTiles ?

2024-03-18 Thread Michael Otto via gdal-dev
Hello everyone, I am in the process of merging several MBTiles files (same zoom level, same CRS) into one file. (Unfortunately I am not allowed to use gdal_merge.py in my environment at the moment.) Currently I am doing this via the detour "gdalbuildvrt". Example commands: 'gdalbuildvrt

[gdal-dev] Expiring token during paging on the WFS

2024-03-28 Thread Michael Otto via gdal-dev
Hello, I have an important question about the use of a 'GDAL_HTTP_HEADER_FILE'. If I request a WFS with "OGR_WFS_PAGING_ALLOWED=ON" and use a header file for authentication, will the header file be read with every new page? I am wondering how I should deal with an expiring bearer token

[gdal-dev] Antwort: Re: Unsupported HTTPAUTH value 'BEARER', ignored

2024-04-05 Thread Michael Otto via gdal-dev
RER', ignored Hi, GDAL_HTTP_AUTH=BEARER support has been added in master / GDAL 3.9dev only (I've just fixed an erroneous statement about it being in 3.8) In earlier versions, you can try setting GDAL_HTTP_HEADERS="Authentication: Bearer {your_token_here}" Even Le 04/04/2024 à 15:40, Michael Ott

[gdal-dev] ERROR 1: Couldn't fetch requested layer when using a filter in the ogr2ogr- GetFeature request

2024-03-27 Thread Michael Otto via gdal-dev
Hello, I'm trying to query a free WFS with filter values via ogr2ogr and write the results to a GeoJson file. If I use the following URL incl. filter: https://isk.geobasis-bb.de/ows/feldblockkataster_wfs?SERVICE=WFS=2.0.0=GetFeature=refbb:Feldblock=EPSG:25833= http://www.opengis.net/fes/2.0;

[gdal-dev] Antwort: Re: ERROR 1: Couldn't fetch requested layer when using a filter in the ogr2ogr- GetFeature request

2024-03-27 Thread Michael Otto via gdal-dev
To%3E%20%3Cfes:PropertyIsEqualTo%3E%20%3Cfes:ValueReference%3EFACHL_GUELTIG_AB%3C/fes:ValueReference%3E%20%3Cfes:Literal%3E2022-01-01%3C/fes:Literal%3E%20%3C/fes:PropertyIsEqualTo%3E%20%3C/fes:And%3E%20%3C/fes:Filter%3E " -al -Jukka Rahkonen- Lähettäjä: gdal-dev Puolesta Michael Ott

[gdal-dev] Segmentation fault (core dumped) in gdal_translate & ogrinfo & ogr2ogr

2024-02-27 Thread Michael Otto via gdal-dev
Hello, with a lot of effort and support from this group I created a first static version of GDAL (incl. the apps) under Linux x64 using vcpkg. For testing I copied the built apps and the data files to different target platforms and set the environment variables accordingly. In a current Linux

[gdal-dev] Antwort: Re: Segmentation fault (core dumped) in gdal_translate & ogrinfo & ogr2ogr

2024-02-27 Thread Michael Otto via gdal-dev
(Jammy Jellyfish). Von:"Robert Coup" An: "Michael Otto" Kopie: gdal-dev@lists.osgeo.org Datum: 27.02.2024 13:14 Betreff:Re: [gdal-dev] Segmentation fault (core dumped) in gdal_translate & ogrinfo & ogr2ogr Hi Michael, On Tue, 27 Feb 2024 at

[gdal-dev] Antwort: Antwort: Re: Segmentation fault (core dumped) in gdal_translate & ogrinfo & ogr2ogr

2024-02-27 Thread Michael Otto via gdal-dev
Von:"Michael Otto via gdal-dev" An: "Robert Coup" Kopie: gdal-dev@lists.osgeo.org Datum: 27.02.2024 14:02 Betreff:[gdal-dev] Antwort: Re: Segmentation fault (core dumped) in gdal_translate & ogrinfo & ogr2ogr Gesendet von: "gdal-dev"

[gdal-dev] Antwort: Antwort: Antwort: Re: Segmentation fault (core dumped) in gdal_translate & ogrinfo & ogr2ogr

2024-02-28 Thread Michael Otto via gdal-dev
have been able to solve the problem using a symbolic link to the correct certificates, but I would still like to know what the problem is. Michael Von: "Michael Otto via gdal-dev" An: "Robert Coup" Kopie: gdal-dev@lists.osgeo.org, "gdal-dev" Datum:

[gdal-dev] Unsupported HTTPAUTH value 'BEARER', ignored

2024-04-04 Thread Michael Otto via gdal-dev
Hello, I am trying to pass an authentication for requests to WFS services. As a test, I have activated the logging of curl and have the errors output to a log file. With HTTP-Basic authentication it seems to work with the following parameters (no errors are logged): 'Auth' is my ArrayList to