You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/core/raster/qgsrasterlayer.h
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ class QLibrary;
83
83
* PalettedSingleBandGray -> a PaletteD layer drawn in gray scale (using only one of the color components)
84
84
* PalettedSingleBandPseudoColor -> a PaletteD layer having only one of its color components rendered as psuedo color
85
85
* PalettedMultiBandColor -> a PaletteD image where the bands contains 24bit color info and 8 bits is pulled out per color
86
-
* MultiBandSingleGandGray -> a layer containing 2 or more bands, but using only one band to produce a grayscale image
86
+
* MultiBandSingleBandGray -> a layer containing 2 or more bands, but using only one band to produce a grayscale image
87
87
* MultiBandSingleBandPseudoColor -> a layer containing 2 or more bands, but using only one band to produce a pseudocolor image
88
88
* MultiBandColor -> a layer containing 2 or more bands, mapped to the three RGBcolors. In the case of a multiband with only two bands, one band will have to be mapped to more than one color
89
89
*
@@ -239,6 +239,8 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
239
239
PalettedSingleBandPseudoColor, // a "Palette" layerdrawn using a pseudocolor algorithm
240
240
PalettedMultiBandColor, // currently not supported
241
241
MultiBandSingleGandGray, // a layer containing 2 or more bands, but a single band drawn as a range of gray colors
242
+
//added in 1.6 to fix naming glitch
243
+
MultiBandSingleBandGray=MultiBandSingleGandGray, // a layer containing 2 or more bands, but a single band drawn as a range of gray colors
242
244
MultiBandSingleBandPseudoColor, //a layer containing 2 or more bands, but a single band drawn using a pseudocolor algorithm
243
245
MultiBandColor //a layer containing 2 or more bands, mapped to RGB color space.
244
246
//In the case of a multiband with only two bands, one band will be mapped to more than one color.
0 commit comments