gdal
gdal copied to clipboard
GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.
## What does this PR do? This PR adds support for WKB (Well-Known Binary) instead of WKT (Well-Known Text) for SFCGAL versions greater than or equal to 1.5.2. It is...
### Feature description I have an extensive imagery processing pipeline, including computation intensive histogram matching, many image adjustments and many compositing steps, but running gdal2tiles takes far longer than any...
This enables using GDAL virtual file systems with other libraries of the Python ecosystem that accept [fsspec](https://filesystem-spec.readthedocs.io/en/latest/) paths """Module exposing GDAL Virtual File Systems (VSI) as a "gdalvsi" fsspec implementation....
[Rendered view](https://gdal--10913.org.readthedocs.build/en/10913/development/rfc/rfc102_embedded_resources.html)
### What is the bug? I am attempting to add text segments to a NITF file which works as expected when not appending a subdataset. If I add a subdataset...
@elpaso Implements what you discussed in https://github.com/OSGeo/gdal/pull/10952#discussion_r1791522527 The last commit ("Make GDALTransformerArg a typedef of an anonymous struct GDALTransformerArgOpaque*") is slightly backwards incompatible
### What is the bug? When I am translating a NITF file to NITF file I except the TRE information to be maintained. It was noticed then anytime a run...
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...
## What does this PR do? During my work on the file `alg/gdal_interpolateatpoint.cpp`, I saw that there was a repetitive pattern: doing everything on X and Y. Both as integer...