diff options
| author | Daniel Wiesmann <daniel.wiesmann@gmail.com> | 2016-03-28 19:12:10 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-03-29 08:06:31 -0400 |
| commit | f1db8c36e9178dcfa14a6bfcad48122a3a5ceea3 (patch) | |
| tree | 1721e8d0edd43d63b18787fd583a78bd94334e2b /docs | |
| parent | a7c813ba045044ec23bb656ef9a23a0e38e36514 (diff) | |
Fixed #26415 -- Allowed deleting nodata value on GDALBands.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/gis/gdal.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/ref/contrib/gis/gdal.txt b/docs/ref/contrib/gis/gdal.txt index b15bd17d54..ed036de12a 100644 --- a/docs/ref/contrib/gis/gdal.txt +++ b/docs/ref/contrib/gis/gdal.txt @@ -1456,10 +1456,18 @@ blue. to mark pixels that are not valid data. Such pixels should generally not be displayed, nor contribute to analysis operations. + To delete an existing "no data" value, set this property to ``None`` + (requires GDAL ≥ 2.1). + .. versionchanged:: 1.9 This property can now be set as well. + .. versionchanged:: 1.10 + + The "no data" value can now be deleted by setting the + ``nodata_value`` attribute to ``None``. + .. method:: datatype(as_string=False) The data type contained in the band, as an integer constant between 0 |
