-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathpsbasemap.c
356 lines (309 loc) · 16.1 KB
/
psbasemap.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
/*--------------------------------------------------------------------
*
* 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 psbasemap application.
*
* Author: Paul Wessel
* Date: 1-JAN-2010
* Version: 6 API
*
* Brief synopsis: psbasemap plots a basemap for the given area using
* the specified map projection.
*/
#include "gmt_dev.h"
#include "longopt/psbasemap_inc.h"
#define THIS_MODULE_CLASSIC_NAME "psbasemap"
#define THIS_MODULE_MODERN_NAME "basemap"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Plot base maps and frames"
#define THIS_MODULE_KEYS ">X},>DA"
#define THIS_MODULE_NEEDS "JR"
#define THIS_MODULE_OPTIONS "->BJKOPRUVXYfptxy" GMT_OPT("EZc")
/* Control structure for psbasemap */
struct PSBASEMAP_CTRL {
struct PSBASEMAP_A { /* -A */
bool active;
char *file;
} A;
struct PSBASEMAP_D { /* -D[g|j|n|x]<refpoint>+w<width>[/<height>][+j<justify>[+o<dx>[/<dy>]][+s<file>][+t] or <xmin>/<xmax>/<ymin>/<ymax>[+r][+s<file>][+t][+u<unit>] */
bool active;
struct GMT_MAP_INSET inset;
} D;
struct PSBASEMAP_F { /* -F[d|f|l][+c<clearance>][+g<fill>][+i[<off>/][<pen>]][+p[<pen>]][+r[<radius>]][+s[<dx>/<dy>/][<shade>]][+d] */
bool active;
/* The panels are members of GMT_MAP_SCALE, GMT_MAP_ROSE, and GMT_MAP_INSET */
} F;
struct PSBASEMAP_L { /* -L[g|j|n|x]<refpoint>+c[<slon>/]<slat>+w<length>[e|f|M|n|k|u][+a<align>][+f][+l[<label>]][+u] */
bool active;
char *arg;
struct GMT_MAP_SCALE scale;
} L;
struct PSBASEMAP_T { /* -Td|m<params> */
bool active;
struct GMT_MAP_ROSE rose;
} T;
};
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct PSBASEMAP_CTRL *C;
C = gmt_M_memory (GMT, NULL, 1, struct PSBASEMAP_CTRL);
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct PSBASEMAP_CTRL *C) { /* Deallocate control structure */
if (!C) return;
gmt_M_str_free (C->A.file);
if (C->D.inset.refpoint) gmt_free_refpoint (GMT, &C->D.inset.refpoint);
gmt_M_free (GMT, C->D.inset.panel);
gmt_M_str_free (C->L.arg);
if (C->L.scale.refpoint) gmt_free_refpoint (GMT, &C->L.scale.refpoint);
gmt_M_free (GMT, C->L.scale.panel);
if (C->T.rose.refpoint) gmt_free_refpoint (GMT, &C->T.rose.refpoint);
gmt_M_free (GMT, C->T.rose.panel);
gmt_M_free (GMT, C);
}
static int usage (struct GMTAPI_CTRL *API, int level) {
/* This displays the psbasemap synopsis and optionally full usage information */
const char *name = gmt_show_name_and_purpose (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_PURPOSE);
bool classic = (API->GMT->current.setting.run_mode == GMT_CLASSIC);
if (level == GMT_MODULE_PURPOSE) return (GMT_NOERROR);
if (classic) {
GMT_Usage (API, 0, "usage: %s %s %s [-A[<file>]] [%s] [-D%s] | [-D%s] [-F[d|l|t]%s] %s "
"[-L%s] %s%s[-Td%s] [-Tm%s] [%s] [%s] [%s] [%s] %s[%s] [%s] [%s] [%s]\n",
name, GMT_J_OPT, GMT_Rgeoz_OPT, GMT_B_OPT, GMT_INSET_A_CL, GMT_INSET_B_CL, GMT_PANEL,
API->K_OPT, GMT_SCALE, API->O_OPT, API->P_OPT, GMT_TROSE_DIR, GMT_TROSE_MAG, GMT_U_OPT, GMT_V_OPT,
GMT_X_OPT, GMT_Y_OPT, API->c_OPT, GMT_f_OPT, GMT_p_OPT, GMT_t_OPT, GMT_PAR_OPT);
}
else {
GMT_Usage (API, 0, "usage: %s %s %s [-A[<file>]] [%s] [-F[l|t]%s] %s [-L%s] "
"%s%s[-Td%s] [-Tm%s] [%s] [%s] [%s] [%s] %s[%s] [%s] [%s] [%s]\n",
name, GMT_J_OPT, GMT_Rgeoz_OPT, GMT_B_OPT, GMT_PANEL, API->K_OPT, GMT_SCALE,
API->O_OPT, API->P_OPT, GMT_TROSE_DIR, GMT_TROSE_MAG, GMT_U_OPT, GMT_V_OPT,
GMT_X_OPT, GMT_Y_OPT, API->c_OPT, GMT_f_OPT, GMT_p_OPT, GMT_t_OPT, GMT_PAR_OPT);
}
if (level == GMT_SYNOPSIS) return (GMT_MODULE_SYNOPSIS);
GMT_Message (API, GMT_TIME_NONE, " REQUIRED ARGUMENTS:\n");
GMT_Option (API, "JZ,R");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:\n\n");
GMT_Usage (API, 1, "\n-A No plotting, just write coordinates of the (possibly oblique) rectangular map boundary "
"to given file (or standard output). Requires -R and -J only. Spacing along border "
"in projected coordinates is controlled by GMT default MAP_LINE_STEP [%gp].",
API->GMT->session.u2u[GMT_INCH][GMT_PT] * API->GMT->current.setting.map_line_step);
GMT_Option (API, "B");
if (classic) {
gmt_mapinset_syntax (API->GMT, 'D', "Draw a simple map inset box as specified below:");
gmt_mappanel_syntax (API->GMT, 'F', "Specify a rectangular panel behind the map inset, scale or rose.", 3);
GMT_Usage (API, -2, "For separate panel attributes, use -Fd, -Fl, -Ft.");
}
else {
gmt_mappanel_syntax (API->GMT, 'F', "Specify a rectangular panel behind the map scale or rose.", 3);
GMT_Usage (API, -2, "For separate panel attributes, use -Fl, -Ft.");
}
GMT_Option (API, "K");
gmt_mapscale_syntax (API->GMT, 'L', "Draw a map scale at specified reference point.");
GMT_Option (API, "O,P");
gmt_maprose_syntax (API->GMT, 'd', "Draw a north-pointing directional map rose at specified reference point.");
gmt_maprose_syntax (API->GMT, 'm', "Draw a north-pointing magnetic map rose at specified reference point.");
GMT_Option (API, "U,V,X,c,f,p,t,.");
return (GMT_MODULE_USAGE);
}
static int parse (struct GMT_CTRL *GMT, struct PSBASEMAP_CTRL *Ctrl, struct GMT_OPTION *options) {
/* This parses the options provided to psbasemap and sets parameters in Ctrl.
* Note Ctrl has already been initialized and non-zero default values set.
* 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, k = 1;
struct GMT_OPTION *opt = NULL;
struct GMTAPI_CTRL *API = GMT->parent;
char *kind[3] = {"Specify a rectangular panel for the map inset", "Specify a rectangular panel behind the map scale", "Specify a rectangular panel behind the map rose"};
char *needed_F_options = NULL;
bool get_panel[3] = {false, false, false}, classic;
classic = (GMT->current.setting.run_mode == GMT_CLASSIC);
needed_F_options = (classic) ? "-D, -L and -T" : "-L and -T";
for (opt = options; opt; opt = opt->next) { /* Process all the options given */
switch (opt->option) {
/* Processes program-specific parameters */
case 'A': /* No plot, just output region outline */
n_errors += gmt_M_repeated_module_option (API, Ctrl->A.active);
if (opt->arg[0]) Ctrl->A.file = strdup (opt->arg);
break;
case 'D': /* Draw map inset */
n_errors += gmt_M_repeated_module_option (API, Ctrl->D.active);
if (classic) {
n_errors += gmt_getinset (GMT, 'D', opt->arg, &Ctrl->D.inset);
}
else {
GMT_Report (API, GMT_MSG_ERROR, "Option -D is not available in modern mode - see inset instead\n");
n_errors++;
}
break;
case 'F':
n_errors += gmt_M_repeated_module_option (API, Ctrl->F.active);
switch (opt->arg[0]) {
case 'd': get_panel[0] = true; break;
case 'l': get_panel[1] = true; break;
case 't': get_panel[2] = true; break;
default : get_panel[1] = get_panel[2] = true; k = 0;
get_panel[0] = classic; break;
}
if (get_panel[0] && classic && gmt_getpanel (GMT, opt->option, &opt->arg[k], &(Ctrl->D.inset.panel))) {
gmt_mappanel_syntax (GMT, 'F', kind[0], 3);
n_errors++;
}
else if (!classic && get_panel[0]) {
GMT_Report (API, GMT_MSG_COMPAT, "Option -Fd is not available in modern mode - see inset instead\n");
n_errors++;
}
if (get_panel[1] && gmt_getpanel (GMT, opt->option, &opt->arg[k], &(Ctrl->L.scale.panel))) {
gmt_mappanel_syntax (GMT, 'F', kind[0], 3);
n_errors++;
}
if (get_panel[2] && gmt_getpanel (GMT, opt->option, &opt->arg[k], &(Ctrl->T.rose.panel))) {
gmt_mappanel_syntax (GMT, 'F', kind[1], 3);
n_errors++;
}
break;
case 'G': /* Set canvas color */
if (gmt_M_compat_check (GMT, 4)) {
GMT_Report (API, GMT_MSG_COMPAT, "Option -G is deprecated; -B...+g%s was set instead, use this in the future.\n", opt->arg);
GMT->current.map.frame.paint[GMT_Z] = true;
if (gmt_getfill (GMT, opt->arg, &GMT->current.map.frame.fill[GMT_Z])) {
gmt_fill_syntax (GMT, 'G', NULL, " ");
n_errors++;
}
}
else
n_errors += gmt_default_option_error (GMT, opt);
break;
case 'L': /* Draw map scale */
n_errors += gmt_M_repeated_module_option (API, Ctrl->L.active);
if (opt->arg[0])
Ctrl->L.arg = strdup (opt->arg);
else {
GMT_Report (API, GMT_MSG_ERROR, "Option -L: No argument given!\n");
n_errors++;
}
break;
case 'T': /* Draw map rose */
n_errors += gmt_M_repeated_module_option (API, Ctrl->T.active);
n_errors += gmt_getrose (GMT, 'T', opt->arg, &Ctrl->T.rose);
break;
#ifdef DEBUG
case '+': /* Draw a single gridline only [for debugging] -+x|y<value>*/
GMT->hidden.gridline_debug = true;
GMT->hidden.gridline_kind = opt->arg[0]; /* Get x or y */
GMT->hidden.gridline_val = atof (&opt->arg[1]); /* Value of grid line */
break;
#endif
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
break;
}
}
n_errors += gmt_M_check_condition (GMT, Ctrl->F.active && Ctrl->L.scale.old_style, "Cannot specify -F and use old-style -L settings\n");
n_errors += gmt_M_check_condition (GMT, !GMT->common.J.active, "Must specify a map projection with the -J option\n");
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->current.map.frame.init || Ctrl->A.active || Ctrl->D.active || Ctrl->L.active || Ctrl->T.active), "Must specify at least one of -A, -B, -D, -L, -T\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->A.active && (GMT->current.map.frame.init || Ctrl->D.active || Ctrl->L.active || Ctrl->T.active), "Cannot use -B, -D, -L, -T with -A\n");
//n_errors += gmt_M_check_condition (GMT, Ctrl->L.active && gmt_M_is_cartesian (GMT, GMT_IN), "-L applies to geographical data only\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->F.active && !(Ctrl->D.active || Ctrl->L.active || Ctrl->T.active), "Option -F is only allowed with %s\n", needed_F_options);
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_psbasemap (void *V_API, int mode, void *args) {
/* High-level function that implements the psbasemap task */
int error;
struct PSBASEMAP_CTRL *Ctrl = NULL; /* Control structure specific to program */
struct GMT_CTRL *GMT = NULL, *GMT_cpy = NULL; /* General GMT internal parameters */
struct PSL_CTRL *PSL = NULL; /* General PSL internal parameters */
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; return if errors are encountered */
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 psbasemap main code ----------------------------*/
/* Ready to make the plot */
GMT_Report (API, GMT_MSG_INFORMATION, "Constructing the basemap\n");
if (gmt_map_setup (GMT, GMT->common.R.wesn)) Return (GMT_PROJECTION_ERROR);
if (Ctrl->L.active && gmt_getscale (GMT, 'L', Ctrl->L.arg, &Ctrl->L.scale)) Return (GMT_PARSE_ERROR);
if (Ctrl->A.active) { /* Just save outline in geographic coordinates */
/* Loop counter-clockwise around the rectangular projected domain, recovering the lon/lat points */
uint64_t nx, ny, k = 0, i, dim[GMT_DIM_SIZE] = {1, 1, 0, 2};
char msg[GMT_BUFSIZ] = {""}, *kind[2] = {"regular", "oblique"};
struct GMT_DATASET *D = NULL;
struct GMT_DATASEGMENT *S = NULL;
nx = urint (GMT->current.map.width / GMT->current.setting.map_line_step);
ny = urint (GMT->current.map.height / GMT->current.setting.map_line_step);
dim[GMT_ROW] = 2 * (nx + ny) + 1;
GMT_Report (API, GMT_MSG_INFORMATION, "Constructing coordinates of the plot domain outline polygon using %" PRIu64 " points\n", dim[GMT_ROW]);
if ((D = GMT_Create_Data (API, GMT_IS_DATASET, GMT_IS_POLYGON, 0, dim, NULL, NULL, 0, 0, NULL)) == NULL) Return (API->error);
S = D->table[0]->segment[0];
/* March around perimeter in a counter-clockwise sense */
for (i = 0; i < nx; i++, k++) gmt_xy_to_geo (GMT, &S->data[GMT_X][k], &S->data[GMT_Y][k], i * GMT->current.setting.map_line_step, 0.0);
for (i = 0; i < ny; i++, k++) gmt_xy_to_geo (GMT, &S->data[GMT_X][k], &S->data[GMT_Y][k], GMT->current.map.width, i * GMT->current.setting.map_line_step);
for (i = nx; i > 0; i--, k++) gmt_xy_to_geo (GMT, &S->data[GMT_X][k], &S->data[GMT_Y][k], i * GMT->current.setting.map_line_step, GMT->current.map.height);
for (i = ny; i > 0; i--, k++) gmt_xy_to_geo (GMT, &S->data[GMT_X][k], &S->data[GMT_Y][k], 0.0, i * GMT->current.setting.map_line_step);
S->data[GMT_X][k] = S->data[GMT_X][0]; S->data[GMT_Y][k++] = S->data[GMT_Y][0]; /* Close polygon */
S->n_rows = dim[GMT_ROW];
D->table[0]->n_headers = 1;
D->table[0]->header = gmt_M_memory (GMT, NULL, 1U, char *);
sprintf (msg, " Geographical coordinates for a (%s) rectangular plot domain outline polygon", kind[GMT->common.R.oblique]);
D->table[0]->header[0] = strdup (msg);
GMT->current.setting.io_header[GMT_OUT] = true; /* Turn on table headers on output */
if (GMT_Write_Data (API, GMT_IS_DATASET, GMT_IS_FILE, GMT_IS_POLYGON, GMT_WRITE_SET, NULL, Ctrl->A.file, D) != GMT_NOERROR) {
Return (API->error);
}
Return (GMT_NOERROR);
}
/* Regular plot behavior */
if ((PSL = gmt_plotinit (GMT, options)) == NULL) Return (GMT_RUNTIME_ERROR);
gmt_plane_perspective (GMT, GMT->current.proj.z_project.view_plane, GMT->current.proj.z_level);
gmt_set_basemap_orders (GMT, GMT_BASEMAP_FRAME_BEFORE, GMT_BASEMAP_GRID_BEFORE, GMT_BASEMAP_ANNOT_BEFORE);
gmt_plotcanvas (GMT); /* Fill canvas if requested */
gmt_map_basemap (GMT); /* Plot base map */
if (Ctrl->L.active) {
if (Ctrl->L.scale.vertical)
gmt_draw_vertical_scale (GMT, &Ctrl->L.scale);
else {
if ((error = gmt_draw_map_scale (GMT, &Ctrl->L.scale)))
Return (error);
}
}
if (Ctrl->T.active) gmt_draw_map_rose (GMT, &Ctrl->T.rose);
if (Ctrl->D.active) gmt_draw_map_inset (GMT, &Ctrl->D.inset, false);
gmt_map_basemap (GMT); /* Plot base map */
gmt_plane_perspective (GMT, -1, 0.0);
gmt_plotend (GMT);
Return (GMT_NOERROR);
}
EXTERN_MSC int GMT_basemap (void *V_API, int mode, void *args) {
/* This is the GMT6 modern mode name */
struct GMTAPI_CTRL *API = gmt_get_api_ptr (V_API); /* Cast from void to GMTAPI_CTRL pointer */
if (API->GMT->current.setting.run_mode == GMT_CLASSIC && !API->usage) {
GMT_Report (API, GMT_MSG_ERROR, "Shared GMT module not found: basemap\n");
return (GMT_NOT_A_VALID_MODULE);
}
return GMT_psbasemap (V_API, mode, args);
}