Opened 8 years ago

Closed 8 years ago

#26415 closed New feature (fixed)

Allow deleting an existing nodata value of a GDALBand.

Reported by: Daniel Wiesmann Owned by: Daniel Wiesmann
Component: GIS Version: dev
Severity: Normal Keywords: raster gdal gis nodata
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: yes
Easy pickings: no UI/UX: no

Description

Currently the nodata value on an existing GDALBand can not be deleted once its set. This can lead to problems when warping rasters that do not have a nodata value. The warp process "copies" the nodata value to the new bands, if the value of the original is None, the warping fails. So this patch is somewhere between a feature and a bug.

Change History (3)

comment:1 by Daniel Wiesmann, 8 years ago

Here is a pull request for solving this problem https://github.com/django/django/pull/6350

comment:2 by Tim Graham, 8 years ago

Patch needs improvement: set
Triage Stage: UnreviewedAccepted

Left a few comments for improvement.

comment:3 by Tim Graham <timograham@…>, 8 years ago

Resolution: fixed
Status: newclosed

In f1db8c3:

Fixed #26415 -- Allowed deleting nodata value on GDALBands.

Note: See TracTickets for help on using tickets.
Back to Top