Re: [gdal-dev] Non-zero FIRST_COL, FIRST_ROW for PNeo ImagetoGround_Validity_Domain

2023-07-26 Thread thomas bonfort
Ferdinand, (re-adding gdal-dev after having exchanged off-list) For your image with FIRST_COL set, you MUST use a gdal with https://github.com/OSGeo/gdal/pull/7653 included. The initial implementation in 5725 was incorrect in two ways: firstly ImagetoGround_Validity_Domain.* is informative only, an

[gdal-dev] Installing Arrow/Parquet

2023-07-26 Thread Scott
I'm having a difficult time building gdal with Arrow/Parquet drivers on debian. Could someone show me exactly what cmake -D switches, paths and sources I need? I've cloned github.com/apache/arrow, and added it to my paths. Clearly, I'm missing something. Thanks!

Re: [gdal-dev] Installing Arrow/Parquet

2023-07-26 Thread Even Rouault
You would need to build arrow-cpp and install it. If you install it in the /usr prefix, GDAL CMake will autodetect it. Otherwise you'll have to pass -DArrow_DIR=${install_prefix}/lib/cmake/Arrow you may also install a prebuilt arrow-cpp package: cf https://arrow.apache.org/install/  and GDAL C

Re: [gdal-dev] Installing Arrow/Parquet

2023-07-26 Thread Scott
I built arrow 12.0.1. When rebuilding GDAL it auto-detected it and all is well. I probably should have just done that in the first place. Thanks for the help Even! On 7/26/23 13:21, Even Rouault wrote: You would need to build arrow-cpp and install it. If you install it in the /usr prefix, GDAL