GRASS GIS 8 Programmer's Manual
8.5.0dev(2024)-602118adcc
|
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 86 of file color_range.c.
Referenced by Rast_abs_log_colors(), and Rast_log_colors().
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.