GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
Raster Library - Color range functions. More...
Go to the source code of this file.
Functions | |
void | Rast_set_c_color_range (CELL min, CELL max, struct Colors *colors) |
Set color range (CELL version) More... | |
void | Rast_set_d_color_range (DCELL min, DCELL max, struct Colors *colors) |
Set color range (DCELL version) More... | |
void | Rast_get_c_color_range (CELL *min, CELL *max, const struct Colors *colors) |
Get color range values (CELL) More... | |
void | Rast_get_d_color_range (DCELL *min, DCELL *max, const struct Colors *colors) |
Get color range values (DCELL) More... | |
Raster Library - Color range functions.
(C) 2001-2009 by the GRASS Development Team
This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details.
Definition in file color_range.c.
Get color range values (CELL)
Returns min and max category in the range or huge numbers if the color table is defined on floating cell values and not on categories.
[out] | min,max | minimum and maximum value |
colors | pointer to Colors structure which holds color info |
Definition at line 64 of file color_range.c.
Get color range values (DCELL)
Returns min and max category in the range or huge numbers if the color table is defined on floating cell values and not on categories.
[out] | min,max | minimum and maximum value |
colors | pointer to Colors structure which holds color info |
Definition at line 87 of file color_range.c.
Set color range (CELL version)
min,max | minimum and maximum value |
colors | pointer to Colors structure which holds color info |
Definition at line 24 of file color_range.c.