-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgrdclip.c
415 lines (370 loc) · 16.8 KB
/
grdclip.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/*
* API functions to support the grdclip application.
*
* Author: Walter H.F. Smith
* Date: 1-JAN-2010
* Version: 6 API
*
* Brief synopsis: Read a grid file and sets all values < the user-supplied
* lower limit to the value <below>, and all values > the user-supplied
* upper limit to the value <above>. above/below can be any number,
* including NaN. Add +e to check equality [<= and >=]. Use -Si for
* intervals and -Sr for reclassifications.
*/
#include "gmt_dev.h"
#include "longopt/grdclip_inc.h"
#define THIS_MODULE_CLASSIC_NAME "grdclip"
#define THIS_MODULE_MODERN_NAME "grdclip"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Clip the range of grid values"
#define THIS_MODULE_KEYS "<G{,GG}"
#define THIS_MODULE_NEEDS ""
#define THIS_MODULE_OPTIONS "-RV"
enum Grdclip_cases {
GRDCLIP_BELOW = 1,
GRDCLIP_BETWEEN = 2,
GRDCLIP_ABOVE = 4,
GRDCLIP_BELOW_OR_EQUAL = 8,
GRDCLIP_ABOVE_OR_EQUAL = 16,
};
/* Control structure for grdclip */
struct GRDCLIP_RECLASSIFY {
gmt_grdfloat low, high, between;
uint64_t n_between;
bool replace; /* true if low == high */
};
struct GRDCLIP_CTRL {
struct GRDCLIP_In {
bool active;
char *file;
} In;
struct GRDCLIP_G { /* -G<output_grdfile> */
bool active;
char *file;
} G;
struct GRDCLIP_S { /* -Sa<high/above>[+e], -Sb<low/below>[+e], -Si<low/high/between>, -Sr<old>/<new> */
bool active;
unsigned int mode;
unsigned int n_class;
unsigned int n_replace;
gmt_grdfloat high, above;
gmt_grdfloat low, below;
struct GRDCLIP_RECLASSIFY *class;
struct GRDCLIP_REPLACE *replace;
} S;
};
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct GRDCLIP_CTRL *C;
C = gmt_M_memory (GMT, NULL, 1, struct GRDCLIP_CTRL);
/* Initialize values whose defaults are not 0/false/NULL */
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct GRDCLIP_CTRL *C) { /* Deallocate control structure */
if (!C) return;
gmt_M_str_free (C->In.file);
gmt_M_str_free (C->G.file);
gmt_M_free (GMT, C->S.class);
gmt_M_free (GMT, C);
}
static int usage (struct GMTAPI_CTRL *API, int level) {
const char *name = gmt_show_name_and_purpose (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_PURPOSE);
if (level == GMT_MODULE_PURPOSE) return (GMT_NOERROR);
GMT_Usage (API, 0, "usage: %s %s -G%s [%s] [-Sa<high>/<above>[+e]] "
"[-Sb<low>/<below>[+e]] [-Si<low>/<high>/<between>] [-Sr<old>/<new>] [%s] [%s]\n", name, GMT_INGRID, GMT_OUTGRID, GMT_Rgeo_OPT, GMT_V_OPT, GMT_PAR_OPT);
if (level == GMT_SYNOPSIS) return (GMT_MODULE_SYNOPSIS);
GMT_Message (API, GMT_TIME_NONE, " REQUIRED ARGUMENTS:\n");
gmt_ingrid_syntax (API, 0, "Name of input grid");
gmt_outgrid_syntax (API, 'G', "Set name of the output grid file");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:\n");
GMT_Option (API, "R");
GMT_Usage (API, 1, "\n-Sa|b|i|r<args>");
GMT_Usage (API, -2, "Set clip selection for the grid, using these directives:");
GMT_Usage (API, 3, "a: Append <high>/<above> and set all nodes > <high> to <above>. Append +e for >= instead.");
GMT_Usage (API, 3, "b: Append <low>/<below> and set all nodes < <low> to <below>. Append +e for <= instead.");
GMT_Usage (API, 3, "i: Append <low>/<high>/<between> a d set all nodes >= <low> and <= <high> to <between>.");
GMT_Usage (API, 3, "r: Append <old>/<new> and set all nodes == <old> to <new>.");
GMT_Usage (API, -2, "Note: <above>, <below>, <between>, and <new> can be any number, including NaN. "
"Choose at least one -S option; -Si -Sr may be repeated.");
GMT_Option (API, "V,.");
return (GMT_MODULE_USAGE);
}
GMT_LOCAL int grdclip_compare_classes (const void *point_1v, const void *point_2v) {
/* Needed to sort classes on low value. */
const struct GRDCLIP_RECLASSIFY *point_1 = point_1v, *point_2 = point_2v;
if (point_1->low < point_2->low) return (-1);
if (point_1->low > point_2->low) return (+1);
return (0);
}
static int parse (struct GMT_CTRL *GMT, struct GRDCLIP_CTRL *Ctrl, struct GMT_OPTION *options) {
/* This parses the options provided to grdcut and sets parameters in CTRL.
* Any GMT common options will override values set previously by other commands.
* It also replaces any file names specified as input or output with the data ID
* returned when registering these sources/destinations with the API.
*/
unsigned int n_errors = 0, n_class = 0;
int n, n_to_expect;
size_t n_alloc = GMT_TINY_CHUNK;
char txt[GMT_LEN64] = {""}, *c = NULL;
struct GMT_OPTION *opt = NULL;
struct GMTAPI_CTRL *API = GMT->parent;
for (opt = options; opt; opt = opt->next) { /* Process all the options given */
switch (opt->option) {
case '<': /* Input file (only one is accepted) */
n_errors += gmt_M_repeated_module_option (API, Ctrl->In.active);
n_errors += gmt_get_required_file (GMT, opt->arg, opt->option, 0, GMT_IS_GRID, GMT_IN, GMT_FILE_REMOTE, &(Ctrl->In.file));
break;
/* Processes program-specific parameters */
case 'G': /* Output filename */
n_errors += gmt_M_repeated_module_option (API, Ctrl->G.active);
n_errors += gmt_get_required_file (GMT, opt->arg, opt->option, 0, GMT_IS_GRID, GMT_OUT, GMT_FILE_LOCAL, &(Ctrl->G.file));
break;
case 'S': /* Set limits */
Ctrl->S.active = true;
n_to_expect = 2;
switch (opt->arg[0]) {
case 'a':
if ((c = strstr (opt->arg, "+e"))) {
c[0] = '\0'; /* Hide modifier */
Ctrl->S.mode |= GRDCLIP_ABOVE_OR_EQUAL;
}
else
Ctrl->S.mode |= GRDCLIP_ABOVE;
#ifdef DOUBLE_PRECISION_GRID
n = sscanf (&opt->arg[1], "%lf/%s", &Ctrl->S.high, txt);
#else
n = sscanf (&opt->arg[1], "%f/%s", &Ctrl->S.high, txt);
#endif
if (n != n_to_expect) {
GMT_Report (API, GMT_MSG_ERROR, "Option -Sa: Expected -Sa<high>/<above>, <above> may be set to NaN\n");
n_errors++;
}
else
Ctrl->S.above = (txt[0] == 'N' || txt[0] == 'n') ? GMT->session.f_NaN : (gmt_grdfloat)atof (txt);
if (c) c[0] = '+'; /* Restore modifier */
break;
case 'b':
if ((c = strstr (opt->arg, "+e"))) {
c[0] = '\0'; /* Hide modifier */
Ctrl->S.mode |= GRDCLIP_BELOW_OR_EQUAL;
}
else
Ctrl->S.mode |= GRDCLIP_BELOW;
#ifdef DOUBLE_PRECISION_GRID
n = sscanf (&opt->arg[1], "%lf/%s", &Ctrl->S.low, txt);
#else
n = sscanf (&opt->arg[1], "%f/%s", &Ctrl->S.low, txt);
#endif
if (n != n_to_expect) {
GMT_Report (API, GMT_MSG_ERROR, "Option -Sb: Expected -Sb<low>/<below>, <below> may be set to NaN\n");
n_errors++;
}
else
Ctrl->S.below = (txt[0] == 'N' || txt[0] == 'n') ? GMT->session.f_NaN : (gmt_grdfloat)atof (txt);
if (c) c[0] = '+'; /* Restore modifier */
break;
case 'i':
n_to_expect = 3; /* Since only two for -Sr */
/* Intentionally fall through - to 'r' */
case 'r':
Ctrl->S.mode |= GRDCLIP_BETWEEN;
if (n_class == Ctrl->S.n_class) { /* Need more memory */
n_alloc <<= 2;
Ctrl->S.class = gmt_M_memory (GMT, Ctrl->S.class, n_alloc, struct GRDCLIP_RECLASSIFY);
}
if (n_to_expect == 3) {
#ifdef DOUBLE_PRECISION_GRID
n = sscanf (&opt->arg[1], "%lf/%lf/%s", &Ctrl->S.class[n_class].low, &Ctrl->S.class[n_class].high, txt);
#else
n = sscanf (&opt->arg[1], "%f/%f/%s", &Ctrl->S.class[n_class].low, &Ctrl->S.class[n_class].high, txt);
#endif
if (n != n_to_expect) {
GMT_Report (API, GMT_MSG_ERROR, "Option -Si: Expected -Si<low>/<high>/<between>, <between> may be set to NaN\n");
n_errors++;
}
else
Ctrl->S.class[n_class].between = (txt[0] == 'N' || txt[0] == 'n') ? GMT->session.f_NaN : (gmt_grdfloat)atof (txt);
}
else {
#ifdef DOUBLE_PRECISION_GRID
n = sscanf (&opt->arg[1], "%lf/%s", &Ctrl->S.class[n_class].low, txt);
#else
n = sscanf (&opt->arg[1], "%f/%s", &Ctrl->S.class[n_class].low, txt);
#endif
if (n != n_to_expect) {
GMT_Report (API, GMT_MSG_ERROR, "Option -Sr: Expected -Sr<old>/<new>, <new> may be set to NaN\n");
n_errors++;
}
else
Ctrl->S.class[n_class].between = (txt[0] == 'N' || txt[0] == 'n') ? GMT->session.f_NaN : (gmt_grdfloat)atof (txt);
Ctrl->S.class[n_class].high = Ctrl->S.class[n_class].low;
Ctrl->S.class[n_class].replace = true;
}
if (Ctrl->S.class[n_class].low > Ctrl->S.class[n_class].high) {
GMT_Report (API, GMT_MSG_ERROR, "Option -Si: <low> cannot exceed <high>!\n");
n_errors++;
}
n_class++;
break;
default:
GMT_Report (API, GMT_MSG_ERROR, "Option -S: Expected -Sa<high>/<above>, -Sb<low>/<below>, -Si<low>/<high>/<between> or -Si<old>/<new>\n");
n_errors++;
}
break;
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
break;
}
}
if (Ctrl->S.mode & GRDCLIP_BETWEEN) { /* Reallocate, sort and check that no classes overlap */
unsigned int k;
Ctrl->S.class = gmt_M_memory (GMT, Ctrl->S.class, n_class, struct GRDCLIP_RECLASSIFY);
Ctrl->S.n_class = n_class;
qsort (Ctrl->S.class, Ctrl->S.n_class, sizeof (struct GRDCLIP_RECLASSIFY), grdclip_compare_classes);
for (k = 1; k < Ctrl->S.n_class; k++) {
if (Ctrl->S.class[k].low < Ctrl->S.class[k-1].high) {
GMT_Report (API, GMT_MSG_ERROR, "Option -Si: Reclassification case %d overlaps with case %d\n", k, k-1);
n_errors++;
}
if (!Ctrl->S.class[k].replace && (gmt_M_is_fnan (Ctrl->S.class[k].low) || gmt_M_is_fnan (Ctrl->S.class[k-1].high))) {
GMT_Report (API, GMT_MSG_ERROR, "Option -Si: Reclassification case %d contains NaN as high or low value\n", k);
n_errors++;
}
}
if (Ctrl->S.mode & GRDCLIP_ABOVE && Ctrl->S.high < Ctrl->S.class[Ctrl->S.n_class-1].high) {
GMT_Report (API, GMT_MSG_ERROR, "Option -Si: Your highest reclassification case overlaps with your -Sa selection\n");
n_errors++;
}
if (Ctrl->S.mode & GRDCLIP_BELOW && Ctrl->S.low > Ctrl->S.class[0].low) {
GMT_Report (API, GMT_MSG_ERROR, "Option -Si: Your lowest reclassification case overlaps with your -Sb selection\n");
n_errors++;
}
}
if ((Ctrl->S.mode & GRDCLIP_ABOVE) && (Ctrl->S.mode & GRDCLIP_BELOW) && (Ctrl->S.high < Ctrl->S.low)) {
GMT_Report (API, GMT_MSG_ERROR, "Option -S: Your -Sa selection overlaps with your -Sb selection\n");
n_errors++;
}
n_errors += gmt_M_check_condition (GMT, !Ctrl->G.active, "Option -G is mandatory\n");
n_errors += gmt_M_check_condition (GMT, !Ctrl->In.active, "Must specify a single grid file\n");
n_errors += gmt_M_check_condition (GMT, !Ctrl->S.mode, "Option -S: Must specify at least one of -Sa, -Sb, -Si, -Sr\n");
return (n_errors ? GMT_PARSE_ERROR : GMT_NOERROR);
}
#define bailout(code) {gmt_M_free_options (mode); return (code);}
#define Return(code) {Free_Ctrl (GMT, Ctrl); gmt_end_module (GMT, GMT_cpy); bailout (code);}
EXTERN_MSC int GMT_grdclip (void *V_API, int mode, void *args) {
openmp_int row, col;
unsigned int k;
int error = 0;
bool new_grid, go = false;
uint64_t ij, n_above = 0, n_below = 0;
double wesn[4];
struct GRDCLIP_CTRL *Ctrl = NULL;
struct GMT_GRID *G = NULL, *Out = NULL;
struct GMT_CTRL *GMT = NULL, *GMT_cpy = NULL;
struct GMT_OPTION *options = NULL;
struct GMTAPI_CTRL *API = gmt_get_api_ptr (V_API); /* Cast from void to GMTAPI_CTRL pointer */
/*----------------------- Standard module initialization and parsing ----------------------*/
if (API == NULL) return (GMT_NOT_A_SESSION);
if (mode == GMT_MODULE_PURPOSE) return (usage (API, GMT_MODULE_PURPOSE)); /* Return the purpose of program */
options = GMT_Create_Options (API, mode, args); if (API->error) return (API->error); /* Set or get option list */
if ((error = gmt_report_usage (API, options, 0, usage)) != GMT_NOERROR) bailout (error); /* Give usage if requested */
/* Parse the command-line arguments */
if ((GMT = gmt_init_module (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_KEYS, THIS_MODULE_NEEDS, module_kw, &options, &GMT_cpy)) == NULL) bailout (API->error); /* Save current state */
if (GMT_Parse_Common (API, THIS_MODULE_OPTIONS, options)) Return (API->error);
Ctrl = New_Ctrl (GMT); /* Allocate and initialize a new control structure */
if ((error = parse (GMT, Ctrl, options)) != 0) Return (error);
/*---------------------------- This is the grdclip main code ----------------------------*/
GMT_Report (API, GMT_MSG_INFORMATION, "Processing input grid\n");
gmt_M_memcpy (wesn, GMT->common.R.wesn, 4, double); /* Current -R setting, if any */
if ((G = GMT_Read_Data (API, GMT_IS_GRID, GMT_IS_FILE, GMT_IS_SURFACE, GMT_CONTAINER_ONLY, NULL, Ctrl->In.file, NULL)) == NULL) {
Return (API->error);
}
if (gmt_M_is_subset (GMT, G->header, wesn)) { /* Subset requested; make sure wesn matches header spacing */
if ((error = gmt_M_err_fail (GMT, gmt_adjust_loose_wesn (GMT, wesn, G->header), "")))
Return (error);
}
if (GMT_Read_Data (API, GMT_IS_GRID, GMT_IS_FILE, GMT_IS_SURFACE, GMT_DATA_ONLY, wesn, Ctrl->In.file, G) == NULL) {
Return (API->error); /* Get subset */
}
new_grid = gmt_set_outgrid (GMT, Ctrl->In.file, false, 0, G, &Out); /* true if input is a read-only array */
gmt_M_grd_loop (GMT, G, row, col, ij) {
/* Checking if extremes are exceeded (need not check NaN) */
if (Ctrl->S.mode & GRDCLIP_ABOVE && G->data[ij] > Ctrl->S.high) {
Out->data[ij] = Ctrl->S.above;
n_above++;
}
else if (Ctrl->S.mode & GRDCLIP_ABOVE_OR_EQUAL && G->data[ij] >= Ctrl->S.high) {
Out->data[ij] = Ctrl->S.above;
n_above++;
}
else if (Ctrl->S.mode & GRDCLIP_BELOW && G->data[ij] < Ctrl->S.low) {
Out->data[ij] = Ctrl->S.below;
n_below++;
}
else if (Ctrl->S.mode & GRDCLIP_BELOW_OR_EQUAL && G->data[ij] <= Ctrl->S.low) {
Out->data[ij] = Ctrl->S.below;
n_below++;
}
else if (Ctrl->S.mode & GRDCLIP_BETWEEN) { /* Intervals */
for (k = 0, go = true; go && k < Ctrl->S.n_class; k++) {
if ((Ctrl->S.class[k].replace && gmt_M_is_fnan (Ctrl->S.class[k].low) && gmt_M_is_fnan (G->data[ij])) || \
(G->data[ij] >= Ctrl->S.class[k].low && G->data[ij] <= Ctrl->S.class[k].high)) {
Out->data[ij] = Ctrl->S.class[k].between;
Ctrl->S.class[k].n_between++;
go = false;
}
}
}
else if (new_grid)
Out->data[ij] = G->data[ij];
}
if (GMT_Set_Comment (API, GMT_IS_GRID, GMT_COMMENT_IS_OPTION | GMT_COMMENT_IS_COMMAND, options, Out)) Return (API->error);
if (GMT_Write_Data (API, GMT_IS_GRID, GMT_IS_FILE, GMT_IS_SURFACE, GMT_CONTAINER_AND_DATA, NULL, Ctrl->G.file, Out) != GMT_NOERROR) {
Return (API->error);
}
if (gmt_M_is_verbose (GMT, GMT_MSG_WARNING)) {
char format[GMT_BUFSIZ] = {""}, format2[GMT_BUFSIZ] = {""}, buffer[GMT_BUFSIZ] = {""};
strcpy (format, "%" PRIu64 " values ");
if (Ctrl->S.mode & GRDCLIP_BELOW || Ctrl->S.mode & GRDCLIP_BELOW_OR_EQUAL) {
sprintf (buffer, "< %s set to %s\n", GMT->current.setting.format_float_out, GMT->current.setting.format_float_out);
strcat (format, buffer);
GMT_Report (API, GMT_MSG_INFORMATION, format, n_below, Ctrl->S.low, Ctrl->S.below);
}
if (Ctrl->S.mode & GRDCLIP_BETWEEN) {
strcpy (format, "%" PRIu64 " values ");
strcpy (format2, "%" PRIu64 " values ");
sprintf (buffer, "between %s and %s set to %s\n", GMT->current.setting.format_float_out,
GMT->current.setting.format_float_out, GMT->current.setting.format_float_out);
strcat (format, buffer);
sprintf (buffer, "equal to %s set to %s\n", GMT->current.setting.format_float_out, GMT->current.setting.format_float_out);
strcat (format2, buffer);
for (k = 0; k < Ctrl->S.n_class; k++) {
if (Ctrl->S.class[k].replace)
GMT_Report (API, GMT_MSG_INFORMATION, format2, Ctrl->S.class[k].n_between, Ctrl->S.class[k].low, Ctrl->S.class[k].between);
else
GMT_Report (API, GMT_MSG_INFORMATION, format, Ctrl->S.class[k].n_between, Ctrl->S.class[k].low, Ctrl->S.class[k].high, Ctrl->S.class[k].between);
}
}
if (Ctrl->S.mode & GRDCLIP_ABOVE || Ctrl->S.mode & GRDCLIP_ABOVE_OR_EQUAL) {
strcpy (format, "%" PRIu64 " values ");
sprintf (buffer, "> %s set to %s\n", GMT->current.setting.format_float_out, GMT->current.setting.format_float_out);
GMT_Report (API, GMT_MSG_INFORMATION, format, n_above, Ctrl->S.high, Ctrl->S.above);
}
}
Return (GMT_NOERROR);
}