forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add methods to set/get nodata value as Int64/UInt64
- GDALRasterBand: virtual int64_t GetNoDataValueAsInt64( int *pbSuccess = nullptr ); virtual uint64_t GetNoDataValueAsUInt64( int *pbSuccess = nullptr ); virtual CPLErr SetNoDataValueAsInt64( int64_t nNoData ); virtual CPLErr SetNoDataValueAsUInt64( uint64_t nNoData ); and corresponding C API and Python bindings - GDALMDArray: int64_t GetNoDataValueAsInt64(bool* pbHasNoData = nullptr) const; uint64_t GetNoDataValueAsUInt64(bool* pbHasNoData = nullptr) const; bool SetNoDataValue(int64_t nNoData); bool SetNoDataValue(uint64_t nNoData); and corresponding C API and Python bindings Adapt: - gdalinfo - gdal_translate - gdal_create - gdal_edit.py - MEM, GTIFF, VRT, netCDF and ZARR drivers
- Loading branch information
Showing
38 changed files
with
3,588 additions
and
886 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.