Opened 13 years ago
Closed 13 years ago
#3587 closed defect (fixed)
VrtRasterBand misses some Set and Get methods in Python bindings.
Reported by: | fasano | Owned by: | hobu |
---|---|---|---|
Priority: | normal | Milestone: | 1.8.0 |
Component: | PythonBindings | Version: | unspecified |
Severity: | normal | Keywords: | |
Cc: | antonio |
Description
Python bindings miss some VRTRasterBand
Set
and Get
methods, present in C++ code, for example:
Set
andGet
ofUniType
Set
andGet
ofOffset
Set
andGet
ofScale
Change History (5)
comment:1 by , 13 years ago
Summary: | {{{VrtRasterBand}}} misses some {{{Set}}} and {{{Get}}} methods in Python bindings. → VrtRasterBand misses some Set and Get methods in Python bindings. |
---|
comment:2 by , 13 years ago
Cc: | added |
---|
follow-up: 4 comment:3 by , 13 years ago
comment:4 by , 13 years ago
Replying to fasano:
GetScale
,GetOffset
and evenGetUnitType
methods are already present in current Gdal stable version.With [19412]
SetScale
andSetOffset
methods are added.
The [19412] changeset seems to be in current trunk and new features should be available with GDAL 1.8, isn't it?
Maybe it could be a good idea to backport them to 1.7 branch.
comment:5 by , 13 years ago
Milestone: | → 1.8.0 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
r19815 /trunk/gdal/ (6 files in 5 dirs): Add C wrapper GDALSetRasterUnitType() for GDALRasterBand::SetUnitType() and map it to SWIG (#3587)
GetScale
,GetOffset
and evenGetUnitType
methods are already present in current Gdal stable version.With [19412]
SetScale
andSetOffset
methods are added.When
SetUnitType
method will be added too, this ticket could be considered as solved.