Even Rouault
Even Rouault
There are several OGR drivers must guess the attribute data type: CSV, GeoJSON, SQLite (see https://github.com/OSGeo/gdal/issues/10938#issuecomment-2395004969), GML (see https://github.com/Toblerity/Fiona/issues/1454) etc. ogr2ogr has flags to alter the field types, but it...
Some parts of GDAL core, but mostly drivers, depends on a number of resource files for correct execution. Locating those resource files on the filesystem can be painful in some...
Revert https://github.com/OSGeo/gdal/pull/10843 when things have come back to normal
This is related to https://github.com/OSGeo/gdal/pull/10762 Having something like the following in a public header ``` class CPL_DLL Foo { private: class Bar; std::unique_ptr opaque{}; } ``` prevents such header from...
GeoPackage is a specification for geospatial files based on a SQLite3 database: https://www.geopackage.org/spec/ Geometries are encoded in as blobs in a column, but the column type name used is not...
Implements https://github.com/OSGeo/PROJ/pull/4274
[Rendered view](https://osgeo-proj--4274.org.readthedocs.build/en/4274/community/rfc/rfc-8.html)
Backport of PR #4282
Backport #4280 **Authored by:** @rouault
RFC 8 (resource embedding) follow-up: update requirements to C23 when generally availability of it
"RFC-8: Embedding resource files into libproj" has a dual mode to embed resources: a C23 solution using #embed preprocessor directive, and a fallback CMake-based script otherwise. So when we require...