GRASS 8 Programmer's Manual 8.6.0dev(2026)-ddeab64dbf
Loading...
Searching...
No Matches
c_thresh.c
Go to the documentation of this file.
1#include <math.h>
2
3#include <grass/gis.h>
4#include <grass/raster.h>
5
6void c_thresh(DCELL *result, DCELL *values, int n, const void *closure)
7{
9 double tval = *(const double *)closure;
10 double epsilon = GRASS_EPSILON;
11 int i;
12
15
16 for (i = 0; i < n; i++) {
17 /* already found */
19 continue;
20
21 if (Rast_is_d_null_value(&values[i]))
22 continue;
23
24 G_debug(2, "values[%d] %f, tval %f", i, values[i], tval);
25 /* for GDD */
26 epsilon = 10.;
27 if (fabs(tval - values[i]) < epsilon) {
28 thresh = values[i];
29 threshx = i + 1;
30 G_debug(2, "values[%d] %f, thresh %f, threshx %f, diff %f", i,
31 values[i], thresh, threshx, tval - values[i]);
32 }
33 }
34
36 Rast_set_d_null_value(result, 1);
37 else
38 *result = threshx;
39}
int G_debug(int, const char *,...) __attribute__((format(printf
void Rast_set_d_null_value(DCELL *, int)
To set a number of DCELL raster values to NULL.
Definition null_val.c:153
#define Rast_is_d_null_value(dcellVal)
stat_func c_thresh
#define GRASS_EPSILON
Definition gis.h:178
double DCELL
Definition gis.h:635