-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgrdmask.c
697 lines (631 loc) · 35 KB
/
grdmask.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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
/*--------------------------------------------------------------------
*
* 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
*--------------------------------------------------------------------*/
/*
* Brief synopsis: grdmask defines a grid based on region and xinc/yinc values,
* reads xy polygon files, and sets the grid nodes inside, on the
* boundary, and outside of the polygons to the user-defined values
* <in>, <on>, and <out>. These may be any number, including NaN.
*
* Author: Walter. H. F. Smith
* Date: 1-JAN-2010
* Version: 6 API
*/
#include "gmt_dev.h"
#include "longopt/grdmask_inc.h"
#define THIS_MODULE_CLASSIC_NAME "grdmask"
#define THIS_MODULE_MODERN_NAME "grdmask"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Create mask grid from polygons or point coverage"
#define THIS_MODULE_KEYS "<D{,GG}"
#define THIS_MODULE_NEEDS "R"
#define THIS_MODULE_OPTIONS "-:RVabdefghijnqrw" GMT_ADD_x_OPT GMT_OPT("FHMm")
#define GRDMASK_N_CLASSES 3 /* outside, on edge, and inside */
#define GRDMASK_N_CART_MASK 9
#define GRDMASK_SET_UPPER 0
#define GRDMASK_SET_LOWER 1
#define GRDMASK_SET_FIRST 2
#define GRDMASK_SET_LAST 3
struct GRDMASK_CTRL {
struct GRDMASK_A { /* -A[m|y|p|x|r|t<step>] */
bool active;
unsigned int mode;
bool polar;
double step;
} A;
struct GRDMASK_C { /* -Cf|l|o|u */
bool active;
unsigned int mode;
int sign;
} C;
struct GRDMASK_G { /* -G<maskfile> */
bool active;
char *file;
} G;
struct GRDMASK_I { /* -I (for checking only) */
bool active;
} I;
struct GRDMASK_N { /* -N<maskvalues> */
bool active;
unsigned int mode; /* 0 for out/on/in, 1 for polygon ID inside, 2 for polygon ID inside+path */
double mask[GRDMASK_N_CLASSES]; /* values for each level */
} N;
struct GRDMASK_S { /* -S[-|=|+]<radius|z>[d|e|f|k|m|M|n] */
bool active;
bool variable_radius; /* true when radii is read in on a per-record basis [false] */
int mode; /* Could be negative */
double radius;
double limit[2];
char unit;
} S;
};
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct GRDMASK_CTRL *C;
C = gmt_M_memory (GMT, NULL, 1, struct GRDMASK_CTRL);
/* Initialize values whose defaults are not 0/false/NULL */
C->C.mode = GRDMASK_SET_LAST; /* Set whatever the last polygon says */
C->N.mask[GMT_INSIDE] = 1.0; /* Default inside value */
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct GRDMASK_CTRL *C) { /* Deallocate control structure */
if (!C) return;
gmt_M_str_free (C->G.file);
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 [<table>] -G%s %s %s [-A[m|p|x|y|r|t]] [-N[z|Z|p|P][<values>]] "
"[-S%s | -S<xlim>/<ylim>] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s]%s [%s] [%s]\n",
name, GMT_OUTGRID, GMT_I_OPT, GMT_Rgeo_OPT, GMT_RADIUS_OPT, GMT_V_OPT, GMT_a_OPT, GMT_bi_OPT, GMT_di_OPT, GMT_e_OPT, GMT_f_OPT, GMT_g_OPT,
GMT_h_OPT, GMT_i_OPT, GMT_j_OPT, GMT_n_OPT, GMT_qi_OPT, GMT_r_OPT, GMT_w_OPT, GMT_x_OPT, GMT_colon_OPT, GMT_PAR_OPT);
if (level == GMT_SYNOPSIS) return (GMT_MODULE_SYNOPSIS);
GMT_Message (API, GMT_TIME_NONE, " REQUIRED ARGUMENTS:\n");
GMT_Option (API, "<");
gmt_outgrid_syntax (API, 'G', "Specify file name for output mask grid file");
GMT_Option (API, "I,R");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:\n");
GMT_Usage (API, 1, "\n-A[m|p|x|y|r|t]");
GMT_Usage (API, -2, "Suppress connecting geographic points using great circle arcs, i.e., connect by straight lines "
"unless m or p is appended to first follow meridian then parallel, or vice versa. For Cartesian data, use -Ax "
"or -Ay to connect first in x, then y, or vice versa. Ignored if -S is used since input data are then considered "
"to be points. If -R is theta/r, use -At or -Ar to connect first in theta, then r, or vice versa.");
GMT_Usage (API, 1, "\n-Cf|l|o|u");
GMT_Usage (API, -2, "Clobber modes affects how polygons sets node values and is determined by the mode:");
GMT_Usage (API, 3, "f: First input polygon determines the final node value.");
GMT_Usage (API, 3, "l: Lowest input polygon value determines the final node value.");
GMT_Usage (API, 3, "o: Last input polygon overrides any previous node value [Default].");
GMT_Usage (API, 3, "u: Highest input polygon value determines the final node value.");
GMT_Usage (API, -2, "Note: Does not apply if -S is used.");
GMT_Usage (API, 1, "\n-N[z|Z|p|P][<values>]");
GMT_Usage (API, -2, "Set <out>/<edge>/<in> to use if node is outside, on the path, or inside. NaN is a valid entry. "
"[Default values are 0/0/1]. Alternatively, use -Nz (inside) or -NZ (inside & edge) to set the inside nodes "
"of a polygon to a z-value obtained as follows (in this order):");
GMT_Usage (API, 3, "%s If OGR/GMT files, get z-value via -aZ=<name> for attribute <name>.", GMT_LINE_BULLET);
GMT_Usage (API, 3, "%s Interpret segment z-values (-Z<zval>) as the z-value.", GMT_LINE_BULLET);
GMT_Usage (API, 3, "%s Interpret segment labels (-L<label>) as the z-value.", GMT_LINE_BULLET);
GMT_Usage (API, -2, "Finally, use -Np|P and append origin for running polygon IDs [0]. For -Nz|Z|p|P you may "
"optionally append /<out [0].");
gmt_dist_syntax (API->GMT, "S" GMT_RADIUS_OPT, "Set search radius to identify inside points.");
GMT_Usage (API, -2, "Mask nodes are set to <in> or <out> depending on whether they are inside the circle of "
"specified radius [0] from the nearest data point. Give radius as 'z' if individual radii are provided via the "
"3rd data column and append a fixed unit unless Cartesian. For Cartesian grids with different x and y units you "
"may append <xlim>/<ylim>; this sets all nodes within the rectangular area of the given half-widths to inside. "
"One can also achieve the rectangular selection effect by using the -S<n_cells>c form. Here n_cells means the "
"number of cells around each data point. As an example, -S0c means that only the cell where point lies is "
"masked, -S1c masks one cell beyond that (i.e. makes a 3x3 neighborhood), and so on. [Default is to assume "
"<table> contains polygons and use inside/outside searching].");
GMT_Option (API, "V,a,bi2,di,e,f,g,h,i,j");
if (gmt_M_showusage (API)) {
GMT_Usage (API, 1, "\n-n+b<BC>");
GMT_Usage (API, -2, "Set boundary conditions. <BC> can be either: g for geographic, p for periodic, and n for "
"natural boundary conditions. For p and n you may optionally append x or y [default is both]: "
"x applies the boundary condition for x only y applies the boundary condition for y only [Default: Natural "
"conditions, unless grid is geographic].");
}
GMT_Option (API, "qi,r,w,x,:,.");
return (GMT_MODULE_USAGE);
}
GMT_LOCAL double grdmask_assign (struct GMT_CTRL *GMT, char *p) {
/* Handle the parsing of NaN|<value> */
double value = (p[0] == 'N' || p[0] == 'n') ? GMT->session.d_NaN : atof (p);
return (value);
}
static int parse (struct GMT_CTRL *GMT, struct GRDMASK_CTRL *Ctrl, struct GMT_OPTION *options) {
/* This parses the options provided to grdmask 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, j, pos;
char ptr[PATH_MAX] = {""}, *c = NULL, *S_copy = NULL;
struct GMT_OPTION *opt = NULL;
struct GMTAPI_CTRL *API = GMT->parent;
for (opt = options; opt; opt = opt->next) {
switch (opt->option) {
case '<': /* Skip input files */
if (GMT_Get_FilePath (API, GMT_IS_DATASET, GMT_IN, GMT_FILE_REMOTE, &(opt->arg))) n_errors++;
break;
/* Processes program-specific parameters */
case 'A': /* Turn off draw_arc mode */
n_errors += gmt_M_repeated_module_option (API, Ctrl->A.active);
switch (opt->arg[0]) {
case 'm': case 'y': Ctrl->A.mode = GMT_STAIRS_Y; break;
case 'p': case 'x': Ctrl->A.mode = GMT_STAIRS_X; break;
case 'r': Ctrl->A.mode = GMT_STAIRS_Y; Ctrl->A.polar = true; break;
case 't': Ctrl->A.mode = GMT_STAIRS_X; Ctrl->A.polar = true; break;
#ifdef DEBUG
default: Ctrl->A.step = atof (opt->arg); break; /* Undocumented test feature; requires step in degrees */
#endif
}
break;
case 'C': /* Clobber mode */
n_errors += gmt_M_repeated_module_option (API, Ctrl->C.active);
switch (opt->arg[0]) {
case 'f': Ctrl->C.mode = GRDMASK_SET_FIRST; break;
case 'l': Ctrl->C.mode = GRDMASK_SET_LOWER; break;
case 'o': Ctrl->C.mode = GRDMASK_SET_LAST; break;
case 'u': Ctrl->C.mode = GRDMASK_SET_UPPER; break;
default:
GMT_Report (API, GMT_MSG_ERROR, "Option -C option: Modifiers are f|l|o|u only\n");
n_errors++;
break;
}
break;
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 'I': /* Grid spacings */
n_errors += gmt_M_repeated_module_option (API, Ctrl->I.active);
n_errors += gmt_parse_inc_option (GMT, 'I', opt->arg);
break;
case 'N': /* Mask values */
n_errors += gmt_M_repeated_module_option (API, Ctrl->N.active);
switch (opt->arg[0]) {
case 'z': /* Z-value from file (inside only) */
Ctrl->N.mode = 1;
if (opt->arg[1] == '/' && opt->arg[2]) Ctrl->N.mask[GMT_OUTSIDE] = grdmask_assign (GMT, &opt->arg[2]); /* Change the outside value */
break;
case 'Z': /* Z-value from file (inside + edge) */
Ctrl->N.mode = 2;
if (opt->arg[1] == '/' && opt->arg[2]) Ctrl->N.mask[GMT_OUTSIDE] = grdmask_assign (GMT, &opt->arg[2]); /* Change the outside value */
break;
case 'p': /* Polygon ID from running number (inside only) */
Ctrl->N.mode = 3;
Ctrl->N.mask[GMT_INSIDE] = (opt->arg[1]) ? atof (&opt->arg[1]) - 1.0 : -1.0; /* Running ID start [0] (we increment first) */
if ((c = strchr (opt->arg, '/')) && c[1]) Ctrl->N.mask[GMT_OUTSIDE] = grdmask_assign (GMT, &c[1]); /* Change the outside value */
break;
case 'P': /* Polygon ID from running number (inside + edge) */
Ctrl->N.mode = 4;
Ctrl->N.mask[GMT_INSIDE] = (opt->arg[1]) ? atof (&opt->arg[1]) - 1.0 : -1.0; /* Running ID start [0] (we increment first) */
if ((c = strchr (opt->arg, '/')) && c[1]) Ctrl->N.mask[GMT_OUTSIDE] = grdmask_assign (GMT, &c[1]); /* Change the outside value */
break;
default: /* Standard out/on/in constant values */
j = pos = 0;
while (j < GRDMASK_N_CLASSES && (gmt_strtok (opt->arg, "/", &pos, ptr))) {
Ctrl->N.mask[j] = grdmask_assign (GMT, ptr);
j++;
}
break;
}
break;
case 'S': /* Search radius */
n_errors += gmt_M_repeated_module_option (API, Ctrl->S.active);
if ((c = strchr (opt->arg, 'z'))) { /* Gave -S[-|=|+]z[d|e|f|k|m|M|n] which means read radii from file */
c[0] = '0'; /* Replace the z with 0 temporarily */
Ctrl->S.mode = gmt_get_distance (GMT, opt->arg, &(Ctrl->S.radius), &(Ctrl->S.unit));
Ctrl->S.variable_radius = true;
c[0] = 'z'; /* Restore v */
}
else if (strchr (opt->arg, '/')) { /* Gave -S<xlim>/<ylim> for Cartesian masking instead */
if (sscanf (opt->arg, "%lg/%lg", &Ctrl->S.limit[GMT_X], &Ctrl->S.limit[GMT_Y]) != 2) {
n_errors++;
}
if (Ctrl->S.limit[GMT_Y] == 0.0) Ctrl->S.limit[GMT_Y] = Ctrl->S.limit[GMT_X];
Ctrl->S.mode = GRDMASK_N_CART_MASK;
}
else { /* Gave -S[-|=|+]<radius>[d|e|f|k|m|M|n|c] which means radius is fixed or 0 */
if (opt->arg[strlen(opt->arg)-1] == 'c') { /* A n of cells request for radius. The problem is that */
if (S_copy) free (S_copy);
S_copy = strdup (opt->arg); /* we can't process it yet because we need -I. So, delay it */
}
else
Ctrl->S.mode = gmt_get_distance (GMT, opt->arg, &(Ctrl->S.radius), &(Ctrl->S.unit));
}
break;
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
break;
}
}
if (S_copy) { /* OK, time to process a -S<n_cells>c option. We had to wait till be sure that the -I option was parsed */
char txt[64] = {""};
int n_cells;
S_copy[strlen(S_copy)-1] = '\0'; /* Drop the 'c' */
n_cells = atoi(S_copy) + 1; /* + 1 so that 0 means cell with point only */
sprintf(txt, "%.12g/%.12g", n_cells * GMT->common.R.inc[GMT_X], n_cells * GMT->common.R.inc[GMT_Y]);
Ctrl->S.mode = gmt_get_distance (GMT, txt, &(Ctrl->S.radius), &(Ctrl->S.unit));
free (S_copy);
}
if (Ctrl->S.mode && Ctrl->S.mode != GRDMASK_N_CART_MASK && gmt_M_is_cartesian (GMT, GMT_IN)) /* Gave a geographic search radius but not -fg so do that automatically */
gmt_parse_common_options (GMT, "f", 'f', "g");
n_errors += gmt_M_check_condition (GMT, !GMT->common.R.active[RSET], "Must specify -R option\n");
n_errors += gmt_M_check_condition (GMT, GMT->common.R.inc[GMT_X] <= 0.0 || GMT->common.R.inc[GMT_Y] <= 0.0,
"Option -I: Must specify positive increment(s)\n");
n_errors += gmt_M_check_condition (GMT, !Ctrl->G.file, "Option -G: Must specify output file\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->S.mode == -1, "Option -S: Unrecognized unit\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->S.mode == -2, "Option -S: Unable to decode radius\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->S.mode == -3, "Option -S: Radius is negative\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->S.mode == GRDMASK_N_CART_MASK && (Ctrl->S.limit[GMT_X] <= 0.0 ||
Ctrl->S.limit[GMT_Y] <= 0.0), "Option -S: x-limit or y-limit is negative\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->S.active && Ctrl->N.mode, "Option -S, -N: Cannot specify -Nz|Z|p|P for points\n");
n_errors += gmt_check_binary_io (GMT, 2);
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_grdmask (void *V_API, int mode, void *args) {
bool periodic = false, periodic_grid = false, do_test = true;
bool wrap_180, replicate_x, replicate_y, worry_about_jumps;
unsigned int side = 0, known_side;
unsigned int tbl, gmode, n_pol = 0, n_cols = 2, x_wrap, y_wrap;
int row, col, row_start, row_end, col_start, col_end, ii, jj, n_columns, n_rows, error = 0, col_0, row_0;
openmp_int *d_col = NULL, d_row = 0, max_d_col = 0, rowu, colu;
uint64_t ij, k, seg;
char text_item[GMT_LEN64] = {""}, *node_is_set = NULL;
gmt_grdfloat mask_val[3], value, z_to_set;
double distance, xx, yy, z_value, xtmp, radius = 0.0, last_radius = -DBL_MAX, *grd_x0 = NULL, *grd_y0 = NULL;
struct GMT_GRID *Grid = NULL;
struct GMT_GRID_HEADER_HIDDEN *HH = NULL;
struct GMT_DATASET *Din = NULL, *D = NULL;
struct GMT_DATASEGMENT *S = NULL;
struct GMT_DATASET_HIDDEN *DH = NULL;
struct GMT_DATASEGMENT_HIDDEN *SH = NULL;
struct GRDMASK_CTRL *Ctrl = 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 grdmask main code ----------------------------*/
gmt_enable_threads (GMT); /* Set number of active threads, if supported */
GMT_Report (API, GMT_MSG_INFORMATION, "Processing input table data\n");
/* Create the empty grid and allocate space */
if ((Grid = GMT_Create_Data (API, GMT_IS_GRID, GMT_IS_SURFACE, GMT_CONTAINER_AND_DATA, NULL, NULL, NULL, \
GMT_GRID_DEFAULT_REG, GMT_NOTSET, NULL)) == NULL) Return (API->error);
for (k = 0; k < 3; k++) mask_val[k] = (gmt_grdfloat)Ctrl->N.mask[k]; /* Copy over the mask values for perimeter polygons */
z_value = Ctrl->N.mask[GMT_INSIDE]; /* Starting value if using running IDs */
HH = gmt_get_H_hidden (Grid->header);
if (gmt_M_is_verbose (GMT, GMT_MSG_INFORMATION)) {
char line[GMT_BUFSIZ] = {""}, *msg[2] = {"polygons", "search radius"};
k = (Ctrl->S.active) ? 1 : 0;
if (Ctrl->N.mode == 1) {
GMT_Report (API, GMT_MSG_INFORMATION, "Nodes completely inside the polygons will be set to the chosen z-value\n");
}
else if (Ctrl->N.mode == 2) {
GMT_Report (API, GMT_MSG_INFORMATION, "Nodes completely inside the polygons or on the edge will be set to the chosen z-value\n");
}
else if (Ctrl->N.mode == 3) {
GMT_Report (API, GMT_MSG_INFORMATION, "Nodes completely inside the polygons will be set to a polygon ID starting at %ld\n", lrint (z_value + 1.0));
}
else if (Ctrl->N.mode == 4) {
GMT_Report (API, GMT_MSG_INFORMATION, "Nodes completely inside the polygons or on the edge will be set to a polygon ID starting at %ld\n", lrint (z_value + 1.0));
}
else {
sprintf (line, "%s\n", GMT->current.setting.format_float_out);
GMT_Report (API, GMT_MSG_INFORMATION, "Nodes completely outside the %s will be set to ", msg[k]);
(gmt_M_is_dnan (Ctrl->N.mask[GMT_OUTSIDE])) ? GMT_Message (API, GMT_TIME_NONE, "NaN\n") : GMT_Message (API, GMT_TIME_NONE, line, Ctrl->N.mask[GMT_OUTSIDE]);
GMT_Report (API, GMT_MSG_INFORMATION, "Nodes completely inside the %s will be set to ", msg[k]);
(gmt_M_is_dnan (Ctrl->N.mask[GMT_INSIDE])) ? GMT_Message (API, GMT_TIME_NONE, "NaN\n") : GMT_Message (API, GMT_TIME_NONE, line, Ctrl->N.mask[GMT_INSIDE]);
GMT_Report (API, GMT_MSG_INFORMATION, "Nodes on the %s boundary will be set to ", msg[k]);
(gmt_M_is_dnan (Ctrl->N.mask[GMT_ONEDGE])) ? GMT_Message (API, GMT_TIME_NONE, "NaN\n") : GMT_Message (API, GMT_TIME_NONE, line, Ctrl->N.mask[GMT_ONEDGE]);
}
}
n_columns = Grid->header->n_columns; n_rows = Grid->header->n_rows; /* Signed versions */
replicate_x = (HH->nxp && Grid->header->registration == GMT_GRID_NODE_REG); /* Gridline registration has duplicate column */
replicate_y = (HH->nyp && Grid->header->registration == GMT_GRID_NODE_REG); /* Gridline registration has duplicate row */
x_wrap = Grid->header->n_columns - 1; /* Add to node index to go to right column */
y_wrap = (Grid->header->n_rows - 1) * Grid->header->n_columns; /* Add to node index to go to bottom row */
node_is_set = gmt_M_memory (GMT, NULL, Grid->header->size, char);
if (Ctrl->S.active) { /* Need distance calculations in correct units, and the d_row/d_col machinery */
if (Ctrl->S.mode == GRDMASK_N_CART_MASK) {
max_d_col = (openmp_int)urint (Ctrl->S.limit[GMT_X] / Grid->header->inc[GMT_X]);
d_row = (openmp_int)urint (Ctrl->S.limit[GMT_Y] / Grid->header->inc[GMT_Y]);
d_col = gmt_M_memory (GMT, NULL, Grid->header->n_rows, openmp_int);
for (rowu = 0; rowu < (openmp_int)Grid->header->n_rows; rowu++) d_col[rowu] = max_d_col;
}
else {
if (gmt_init_distaz (GMT, Ctrl->S.unit, Ctrl->S.mode, GMT_MAP_DIST) == GMT_NOT_A_VALID_TYPE)
Return (GMT_NOT_A_VALID_TYPE);
if (!Ctrl->S.variable_radius) { /* Read x,y, fixed radius from -S */
radius = Ctrl->S.radius;
d_col = gmt_prep_nodesearch (GMT, Grid, radius, Ctrl->S.mode, &d_row, &max_d_col); /* Init d_row/d_col etc */
}
else /* Read x, y, radius */
n_cols = 3;
}
grd_x0 = Grid->x;
grd_y0 = Grid->y;
}
periodic = gmt_M_x_is_lon (GMT, GMT_IN); /* Dealing with geographic coordinates */
gmt_set_line_resampling (GMT, Ctrl->A.active, Ctrl->A.mode); /* Possibly change line resampling mode */
/* Initialize all nodes (including pad) to the 'outside' value */
for (ij = 0; ij < Grid->header->size; ij++) Grid->data[ij] = mask_val[GMT_OUTSIDE];
if ((error = GMT_Set_Columns (API, GMT_IN, n_cols, GMT_COL_FIX_NO_TEXT)) != GMT_NOERROR) {
if (Ctrl->S.active)
gmt_M_free (GMT, d_col);
Return (error);
}
gmode = (Ctrl->S.active) ? GMT_IS_POINT : GMT_IS_POLY;
gmt_skip_xy_duplicates (GMT, true); /* Skip repeating x/y points in polygons */
if (GMT_Init_IO (API, GMT_IS_DATASET, gmode, GMT_IN, GMT_ADD_DEFAULT, 0, options) != GMT_NOERROR) /* Registers default input sources, unless already set */
error = API->error;
if (!Ctrl->S.active && (error = GMT_Set_Columns (API, GMT_IN, 2, GMT_COL_FIX_NO_TEXT)) != GMT_NOERROR) {
/* We don't want trailing text because we may need to resample lines below */
Return (API->error);
}
if ((Din = GMT_Read_Data (API, GMT_IS_DATASET, GMT_IS_FILE, 0, GMT_READ_NORMAL, NULL, NULL, NULL)) == NULL)
error = API->error;
if (error && Ctrl->S.active) {
gmt_M_free (GMT, d_col);
Return (error);
}
gmt_skip_xy_duplicates (GMT, false); /* Reset */
D = Din; /* The default is to work with the input data as is */
DH = gmt_get_DD_hidden (D);
if (!Ctrl->S.active) { /* Make sure we were given at least one polygon */
for (tbl = n_pol = 0; tbl < D->n_tables; tbl++)
for (seg = 0; seg < D->table[tbl]->n_segments; seg++)
if (D->table[tbl]->segment[seg]->n_rows > 2) n_pol++; /* Count polytons */
if (n_pol == 0) {
GMT_Report (API, GMT_MSG_ERROR, "Without -S, we expect to read polygons but none found\n");
Return (GMT_RUNTIME_ERROR);
}
}
if (!Ctrl->S.active && GMT->current.map.path_mode == GMT_RESAMPLE_PATH) { /* Resample all polygons to desired resolution, once and for all */
uint64_t n_new;
if (DH->alloc_mode == GMT_ALLOC_EXTERNALLY) {
D = GMT_Duplicate_Data (API, GMT_IS_DATASET, GMT_DUPLICATE_ALLOC + GMT_ALLOC_NORMAL, Din);
DH = gmt_get_DD_hidden (D);
}
if (Ctrl->A.polar) GMT->current.proj.projection = GMT_POLAR; /* Cheat to trigger polar resampling */
for (tbl = 0; tbl < D->n_tables; tbl++) {
for (seg = 0; seg < D->table[tbl]->n_segments; seg++) { /* For each segment in the table */
S = D->table[tbl]->segment[seg]; /* Current segment */
if ((n_new = gmt_fix_up_path (GMT, &S->data[GMT_X], &S->data[GMT_Y], S->n_rows, Ctrl->A.step, Ctrl->A.mode)) == 0) {
if (DH->alloc_mode == GMT_ALLOC_EXTERNALLY) GMT_Destroy_Data (API, &D);
Return (GMT_RUNTIME_ERROR);
}
S->n_rows = n_new;
gmt_set_seg_minmax (GMT, D->geometry, 2, S); /* Update min/max or x/y only */
}
}
if (Ctrl->A.polar) GMT->current.proj.projection = 0; /* Undo the trick */
}
if (!Ctrl->S.active)
gmt_set_inside_mode (GMT, D, GMT_IOO_UNKNOWN);
if (Ctrl->S.mode == GRDMASK_N_CART_MASK) radius = 1; /* radius not used in this case and this avoids another if test */
worry_about_jumps = (gmt_M_x_is_lon (GMT, GMT_IN) && !gmt_grd_is_global (GMT, Grid->header));
for (tbl = n_pol = 0; tbl < D->n_tables; tbl++) {
for (seg = 0; seg < D->table[tbl]->n_segments; seg++, n_pol++) { /* For each segment in the table */
S = D->table[tbl]->segment[seg]; /* Current data segment */
if (Ctrl->S.active) { /* Assign 'inside' to nodes within given distance of data constraints */
for (k = 0; k < S->n_rows; k++) {
if (gmt_M_y_is_outside (GMT, S->data[GMT_Y][k], Grid->header->wesn[YLO], Grid->header->wesn[YHI])) continue; /* Outside y-range */
xtmp = S->data[GMT_X][k]; /* Make copy since we may have to adjust by +-360 */
if (gmt_x_is_outside (GMT, &xtmp, Grid->header->wesn[XLO], Grid->header->wesn[XHI])) continue; /* Outside x-range (or longitude) */
if (Ctrl->S.variable_radius) radius = S->data[GMT_Z][k];
if (gmt_M_y_is_lat (GMT, GMT_IN)) { /* Make special checks for N and S poles */
if (gmt_M_is_Npole (S->data[GMT_Y][k])) { /* N pole */
if (radius == 0.0) { /* Only set the N pole row */
gmt_M_col_loop (GMT, Grid, 0, colu, ij) /* Set this entire N row */
Grid->data[ij] = mask_val[GMT_INSIDE];
continue;
}
for (rowu = 0; rowu < (openmp_int)Grid->header->n_rows && (distance = gmt_distance (GMT, 0.0, 90.0, grd_x0[0], grd_y0[rowu])) <= radius; rowu++) {
value = (doubleAlmostEqualZero (distance, radius)) ? mask_val[GMT_ONEDGE] : mask_val[GMT_INSIDE]; /* The onedge or inside value */
gmt_M_col_loop (GMT, Grid, rowu, colu, ij) /* Set this entire row */
Grid->data[ij] = value;
}
continue;
}
else if (gmt_M_is_Spole (S->data[GMT_Y][k])) { /* S pole */
if (radius == 0.0) { /* Only set the S pole row */
rowu = (openmp_int)Grid->header->n_rows - 1;
gmt_M_col_loop (GMT, Grid, rowu, colu, ij) /* Set this entire S row */
Grid->data[ij] = mask_val[GMT_INSIDE];
continue;
}
for (row = (int)(Grid->header->n_rows - 1); row >= 0 && (distance = gmt_distance (GMT, 0.0, -90.0, grd_x0[0], grd_y0[row])) <= radius; row--) {
value = (doubleAlmostEqualZero (distance, radius)) ? mask_val[GMT_ONEDGE] : mask_val[GMT_INSIDE]; /* The onedge or inside value */
rowu = (openmp_int)row;
gmt_M_col_loop (GMT, Grid, rowu, colu, ij) /* Set this entire row */
Grid->data[ij] = value;
}
continue;
}
}
/* OK, not a pole and this point is within bounds, but may be exactly on the border */
row_0 = gmt_M_grd_y_to_row (GMT, S->data[GMT_Y][k], Grid->header);
if (row_0 == (int)Grid->header->n_rows) row_0--; /* Was exactly on the ymin edge */
if (gmt_y_out_of_bounds (GMT, &row_0, Grid->header, &wrap_180)) continue; /* Outside y-range. This call must happen BEFORE gmt_x_out_of_bounds as it sets wrap_180 */
col_0 = gmt_M_grd_x_to_col (GMT, xtmp, Grid->header);
if (col_0 == (int)Grid->header->n_columns) col_0--; /* Was exactly on the xmax edge */
if (gmt_x_out_of_bounds (GMT, &col_0, Grid->header, wrap_180)) continue; /* Outside x-range, This call must happen AFTER gmt_y_out_of_bounds which sets wrap_180 */
ij = gmt_M_ijp (Grid->header, row_0, col_0);
Grid->data[ij] = mask_val[GMT_INSIDE]; /* This is the nearest node */
node_is_set[ij] = 1; /* Mark as visited */
if (Grid->header->registration == GMT_GRID_NODE_REG &&
(col_0 == 0 || col_0 == (int)(Grid->header->n_columns-1)) && periodic_grid) {
/* Must duplicate the entry at periodic point */
col = (col_0 == 0) ? Grid->header->n_columns-1 : 0;
ij = gmt_M_ijp (Grid->header, row_0, col);
Grid->data[ij] = mask_val[GMT_INSIDE]; /* This is also the nearest node */
node_is_set[ij] = 1; /* Mark as visited */
}
if (radius == 0.0) continue; /* Only consider the nearest node */
/* Here we also include all the nodes within the search radius */
if (Ctrl->S.variable_radius && !doubleAlmostEqual (radius, last_radius)) { /* Init d_row/d_col etc */
gmt_M_free (GMT, d_col);
d_col = gmt_prep_nodesearch (GMT, Grid, radius, Ctrl->S.mode, &d_row, &max_d_col);
last_radius = radius;
}
row_start = row_0 - (int)d_row;
row_end = row_0 + (int)d_row;
GMT_Report (API, GMT_MSG_DEBUG, "Doing point %d for rows %d to %d\n", (int)k, row_start, row_end);
for (row = row_start; row <= row_end; row++) {
jj = row;
if (gmt_y_out_of_bounds (GMT, &jj, Grid->header, &wrap_180)) continue; /* Outside y-range. This call must happen BEFORE gmt_x_out_of_bounds as it sets wrap_180 */
rowu = (openmp_int)jj;
col_start = col_0 - (int)d_col[rowu];
col_end = col_0 + (int)d_col[rowu];
for (col = col_start; col <= col_end; col++) {
ii = col;
if (gmt_x_out_of_bounds (GMT, &ii, Grid->header, wrap_180)) continue; /* Outside x-range, This call must happen AFTER gmt_y_out_of_bounds which sets wrap_180 */
colu = (openmp_int)ii;
ij = gmt_M_ijp (Grid->header, rowu, colu);
if (node_is_set[ij]) continue; /* Already set */
if (Ctrl->S.mode == GRDMASK_N_CART_MASK) /* Rectangular are for Cartesian so no need to check radius */
Grid->data[ij] = mask_val[GMT_INSIDE]; /* The inside value */
else {
distance = gmt_distance (GMT, xtmp, S->data[GMT_Y][k], grd_x0[colu], grd_y0[rowu]);
if (distance > radius) continue; /* Clearly outside */
Grid->data[ij] = (doubleAlmostEqualZero (distance, radius)) ? mask_val[GMT_ONEDGE] : mask_val[GMT_INSIDE]; /* The onedge or inside value */
}
node_is_set[ij] = 1; /* Mark as visited */
/* With periodic, gridline-registered grids there are duplicate rows and/or columns
so we may have to assign the point to more than one node. The next section deals
with this situation.
*/
if (replicate_x) { /* Must check if we have to replicate a column */
if (colu == 0) { /* Must replicate left to right column */
Grid->data[ij+x_wrap] = Grid->data[ij];
node_is_set[ij+x_wrap] = 1; /* Mark as visited */
}
else if (colu == (openmp_int)HH->nxp) { /* Must replicate right to left column */
Grid->data[ij-x_wrap] = Grid->data[ij];
node_is_set[ij-x_wrap] = 1; /* Mark as visited */
}
}
if (replicate_y) { /* Must check if we have to replicate a row */
if (rowu == 0) { /* Must replicate top to bottom row */
Grid->data[ij+y_wrap] = Grid->data[ij];
node_is_set[ij+y_wrap] = 1; /* Mark as visited */
}
else if (rowu == (openmp_int)HH->nyp) { /* Must replicate bottom to top row */
Grid->data[ij-y_wrap] = Grid->data[ij];
node_is_set[ij-y_wrap] = 1; /* Mark as visited */
}
}
}
}
}
}
else if (S->n_rows > 2) { /* Assign 'inside' to nodes if they are inside any of the given polygons (Need at least 3 vertices) */
if (gmt_polygon_is_hole (GMT, S)) continue; /* Holes are handled within gmt_inonout */
SH = gmt_get_DS_hidden (S);
if (Ctrl->N.mode == 1 || Ctrl->N.mode == 2) { /* Look for z-values in the data headers */
if (SH->ogr) /* OGR data */
z_value = gmt_get_aspatial_value (GMT, GMT_IS_Z, S);
else if (gmt_parse_segment_item (GMT, S->header, "-Z", text_item)) /* Look for zvalue option */
z_value = atof (text_item);
else if (gmt_parse_segment_item (GMT, S->header, "-L", text_item)) /* Look for segment header ID */
z_value = atof (text_item);
else
GMT_Report (API, GMT_MSG_ERROR, "No z-value found; z-value set to NaN\n");
}
else if (Ctrl->N.mode) /* 3 or 4; Increment running polygon ID */
z_value += 1.0;
if (Ctrl->N.mode) z_to_set = (gmt_grdfloat)z_value; /* Can set the value once here */
if (worry_about_jumps) gmt_eliminate_lon_jumps (GMT, S->data[GMT_X], S->n_rows); /* Since many segments may have been read we cannot be sure there are no junps */
for (row = 0; row < n_rows; row++) { /* Loop over grid rows */
yy = gmt_M_grd_row_to_y (GMT, row, Grid->header);
/* First check if y/latitude is outside, then there is no need to check all the x/lon values */
if (periodic) { /* Containing annulus test */
do_test = true;
switch (SH->pole) {
case 0: /* Not a polar cap */
if (yy < S->min[GMT_Y] || yy > S->max[GMT_Y]) continue; /* Outside, no need to check */
break;
case -1: /* S polar cap */
if (yy > S->max[GMT_Y]) continue; /* Outside, no need to check */
if (yy < SH->lat_limit) known_side = GMT_INSIDE, do_test = false; /* Guaranteed inside, set answer */
break;
case +1: /* N polar cap */
if (yy < S->min[GMT_Y]) continue; /* Outside, no need to check */
if (yy > SH->lat_limit) known_side = GMT_INSIDE, do_test = false; /* Guaranteed inside, set answer */
break;
}
}
else if (yy < S->min[GMT_Y] || yy > S->max[GMT_Y]) /* Cartesian case */
continue; /* Outside, no need to check */
/* Here we will have to consider the x coordinates as well (or known_side is set) */
#ifdef _OPENMP
#pragma omp parallel for private(col,ij,xx,side,z_to_set) shared(n_columns,Grid,row,Ctrl,node_is_set,GMT,do_test,yy,S,known_side,z_value,mask_val)
#endif
for (col = 0; col < n_columns; col++) { /* Loop over grid columns */
ij = gmt_M_ijp (Grid->header, row, col);
if (Ctrl->C.mode == GRDMASK_SET_FIRST && node_is_set[ij]) continue; /* Already set */
xx = gmt_M_grd_col_to_x (GMT, col, Grid->header);
if (do_test) { /* Must consider xx to determine if we are inside */
if ((side = gmt_inonout (GMT, xx, yy, S)) == GMT_OUTSIDE)
continue; /* Outside polygon, go to next point */
}
else /* Already know the answer */
side = known_side;
/* Here, point is inside or on edge, we must assign value */
if (Ctrl->N.mode%2 && side == GMT_ONEDGE) continue; /* Not counting the edge as part of polygon for ID tagging for mode 1 | 3 */
z_to_set = (Ctrl->N.mode) ? z_value : mask_val[side]; /* Must update since z depends on side */
if (node_is_set[ij]) { /* Been here before so the Grid has a value; must consult the mode */
switch (Ctrl->C.mode) {
case GRDMASK_SET_UPPER: if (Grid->data[ij] >= z_to_set) continue; break; /* Already has a higher value; else set below */
case GRDMASK_SET_LOWER: if (Grid->data[ij] <= z_to_set) continue; break; /* Already has a lower value; else set below */
default: /* Last case GRDMASK_SET_LAST is always true in that we always update the node */
break;
}
}
Grid->data[ij] = z_to_set;
node_is_set[ij] = 1; /* Mark as visited */
}
#ifndef _OPENMP
GMT_Report (API, GMT_MSG_DEBUG, "Polygon %d scanning row %05d\n", n_pol, row);
#endif
}
}
else { /* 2 or fewer points in the "polygon" */
GMT_Report (API, GMT_MSG_WARNING, "Segment %" PRIu64 " is not a polygon - skipped\n", seg);
}
}
}
if (D != Din && GMT_Destroy_Data (API, &D) != GMT_NOERROR) Return (API->error); /* Free the duplicate dataset */
if (GMT_Set_Comment (API, GMT_IS_GRID, GMT_COMMENT_IS_OPTION | GMT_COMMENT_IS_COMMAND, options, Grid)) 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, Grid) != GMT_NOERROR) {
Return (API->error);
}
gmt_M_free (GMT, node_is_set);
if (Ctrl->S.active)
gmt_M_free (GMT, d_col);
Return (GMT_NOERROR);
}