GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
c_range.c
Go to the documentation of this file.
1
#include <
grass/gis.h
>
2
#include <
grass/raster.h
>
3
4
void
c_range
(
DCELL
* result,
DCELL
* values,
int
n,
const
void
*closure)
5
{
6
DCELL
min
,
max
;
7
int
i;
8
9
Rast_set_d_null_value
(&min, 1);
10
Rast_set_d_null_value
(&max, 1);
11
12
for
(i = 0; i < n; i++) {
13
if
(
Rast_is_d_null_value
(&values[i]))
14
continue
;
15
16
if
(
Rast_is_d_null_value
(&min) || min > values[i])
17
min = values[i];
18
19
if
(
Rast_is_d_null_value
(&max) || max < values[i])
20
max = values[i];
21
}
22
23
if
(
Rast_is_d_null_value
(&min) ||
Rast_is_d_null_value
(&max))
24
Rast_set_d_null_value
(result, 1);
25
else
26
*result = max -
min
;
27
}
Rast_is_d_null_value
#define Rast_is_d_null_value(dcellVal)
Definition:
defs/raster.h:420
min
#define min(x, y)
Definition:
draw2.c:31
DCELL
double DCELL
Definition:
gis.h:603
max
#define max(x, y)
Definition:
draw2.c:32
c_range
void c_range(DCELL *result, DCELL *values, int n, const void *closure)
Definition:
c_range.c:4
raster.h
gis.h
Rast_set_d_null_value
void Rast_set_d_null_value(DCELL *, int)
To set a number of DCELL raster values to NULL.
Definition:
null_val.c:155
lib
stats
c_range.c
Generated on Mon May 31 2021 05:21:28 for GRASS GIS 7 Programmer's Manual by
1.8.13