GRASS GIS 7 Programmer's Manual  7.9.dev(2021)-e5379bbd7
c_maxx.c
Go to the documentation of this file.
1 #include <grass/gis.h>
2 #include <grass/raster.h>
3 
4 void c_maxx(DCELL * result, DCELL * values, int n, const void *closure)
5 {
6  DCELL max, maxx;
7  int i;
8 
9  Rast_set_d_null_value(&max, 1);
10  Rast_set_d_null_value(&maxx, 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(&max) || max < values[i]) {
17  max = values[i];
18  maxx = i;
19  }
20  }
21 
22  if (Rast_is_d_null_value(&maxx))
23  Rast_set_d_null_value(result, 1);
24  else
25  *result = maxx;
26 }
#define Rast_is_d_null_value(dcellVal)
Definition: defs/raster.h:420
double DCELL
Definition: gis.h:603
#define max(x, y)
Definition: draw2.c:32
void c_maxx(DCELL *result, DCELL *values, int n, const void *closure)
Definition: c_maxx.c:4
void Rast_set_d_null_value(DCELL *, int)
To set a number of DCELL raster values to NULL.
Definition: null_val.c:155