Even Rouault
Even Rouault
A number of drivers may (or require) a "DRIVER_NAME:" prefix to help them identify a dataset. They could also take into account when poOpenInfo->papszAllowedDrivers has a single value which is...
For Parquet datasets (ie multiple Parquet files), according to https://arrow.apache.org/docs/cpp/dataset.html#filtering-data, it should be possible to forward attribute filtering to libparquet with ScannerBuilder::Filter()
Parquet: implement efficient attribute and spatial filtering for datasets opened with ArrowDataset
That is for Parquet datasets made of multiple files opened from a directory name, or opening a single parquet file with ``PARQUET:/path/to/my.parquet`` (if opening a single .parquet file, without ``PARQUET:``...
Within the code base, we use mostly the C API of VSIFILE*. This is not super elegant, slightly inefficient (due to an extra C layer) and we have to manage...
also remove comment suggesting using std::aligned_storage since it is deprecated in C++23
The method had a fallback path when allocating a temporary buffer of the size of the one passed ot the method, that intended to use a less memory intensive block-based...
- ogr2ogr: speed-up -clipsrc/-clipdst by avoiding GEOS when possible If the envelope of the feature's geometry is contained in the envelope of the -clipsrc/-clipdst geometry, we can just avoid any...
Fixes #10336