-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgmt_common.h
282 lines (271 loc) · 12 KB
/
gmt_common.h
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
/*--------------------------------------------------------------------
*
* 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
*--------------------------------------------------------------------*/
/*
* Holds current selections for the family of common GMT options.
*
* Author: Paul Wessel
* Date: 01-JAN-2011
* Version: 6 API
*/
/*!
* \file gmt_common.h
* \brief Holds current selections for the family of common GMT options
*/
#ifndef GMT_COMMON_H
#define GMT_COMMON_H
/*! Constants related to detecting data gaps which should be treated as segment boundaries */
enum GMT_enum_gaps {GMT_NEGGAP_IN_COL = 0, /* Check if previous minus current column value exceeds <gap> */
GMT_POSGAP_IN_COL, /* Check if current minus previous column value exceeds <gap> */
GMT_ABSGAP_IN_COL, /* Check if |current minus previous column value| exceeds <gap> */
GMT_NEGGAP_IN_MAP_COL, /* Check if previous minus current column value exceeds <gap> after map projection */
GMT_POSGAP_IN_MAP_COL, /* Check if current minus previous column value exceeds <gap> after map projection */
GMT_ABSGAP_IN_MAP_COL, /* Check if |current minus previous column value| exceeds <gap> after map projection */
GMT_GAP_IN_GDIST, /* Check if great-circle distance between successive points exceeds <gap> (in km,m,nm, etc)*/
GMT_GAP_IN_CDIST, /* Check if Cartesian distance between successive points exceeds <gap> */
GMT_GAP_IN_PDIST, /* Check if Cartesian distance between successive points exceeds <gap> after map projection */
GMT_GAP_IN_DDIST, /* Check if great-circle distance between successive points exceeds <gap> (in arc degrees,min,sec) */
GMT_N_GAP_METHODS};
#define MAX_ASPATIAL 64 /* No more than 64 aspatial options in -a */
#define GMT_SHORTHAND_OPTIONS "BJRXYp" /* All of the shorthand options */
#define GMT_CRITICAL_OPT_ORDER "V-JfrRbi" /* If given options among these must be parsed first and in this order */
#define RSET 0 /* Index into R.active[] for -R */
#define ISET 1 /* Index into R.active[] for -I (or similar option) */
#define GSET 2 /* Index into R.active[] for -r */
#define FSET 3 /* Index into R.active[] for "got -R -I -r from a grid file" */
struct GMT_LEGEND_ITEM { /* Information about one item in a legend */
char label[GMT_LEN128]; /* The symbol label */
char header[GMT_LEN128]; /* Header for the whole legend H */
char subheader[GMT_LEN128]; /* Subheader, i.e., line label L*/
char font[GMT_LEN32]; /* Fontsize to use for current H or L */
char fill[GMT_LEN32]; /* Fill of the canvas behind the legend */
char gap[GMT_LEN32]; /* Move this much down before placing symbol entry */
char off[GMT_LEN32]; /* Offset of anchor point for frame */
char pen[3][GMT_LEN32]; /* Pens to use with +d and +v and +p */
int draw; /* 0 no draw, 1 draw horizontal +d, 2 draw vertical +v */
int just; /* Legend placement [TR] */
int label_type; /* 0 if static string, 1 if integer format statement, 2 if list of labels, 3 if nothing (use segment header) */
char code; /* Label justification code (L|C|R) [L] */
double size; /* Fixed symbol size when otherwise cannot set it */
double size2; /* 2nd size (height) for 2-D symbols */
double scale; /* Scale all given sizes, including +s<length> of a line */
double width; /* Override auto-width with a fixed legend width */
unsigned int ncols; /* How many columns to use for symbols */
unsigned int ID; /* ID to use if label contains C-format for integer */
};
struct GMT_COL_IO { /* Common but separate information for -i and -o */
bool select, orig, word, end, text;
uint64_t n_cols, w_col;
uint64_t n_actual_cols;
char string[GMT_LEN64];
};
/*! Structure with all information given via the common GMT command-line options -R -J .. */
struct GMT_COMMON {
struct synopsis { /* \0 (zero) or ^ */
bool active;
bool extended; /* + to also show non-common options */
} synopsis;
struct B { /* -B<params> */
bool active[2]; /* 0 = primary annotation, 1 = secondary annotations */
int mode; /* 5 = GMT 5 syntax, 4 = GMT 4 syntax, 1 = Either, -1 = mix (error), 0 = not set yet */
char string[2][GMT_LEN256];
} B;
struct J { /* -J<params> */
bool active, zactive;
bool width_given; /* If true then -R is required too */
unsigned int id;
char string[GMT_LEN128];
char zstring[GMT_LEN128]; /* For -Jz|Z */
char proj4string[GMT_LEN256];
char WKTstring[GMT_LEN1024];
double par[6];
} J;
struct K { /* -K */
bool active;
} K;
struct O { /* -O */
bool active;
} O;
struct P { /* -P */
bool active;
} P;
struct R { /* -Rw/e/s/n[/z_min/z_max][r] or -Rgridfile */
bool active[4]; /* RSET = 0: -R, ISET = 1: inc, GSET = 2: -r, FSET = 3: read grid */
bool oblique; /* true when -R...r was given (oblique map, probably), else false (map borders are meridians/parallels) */
bool via_polygon; /* Got -R<countrycode> so w/e/s/n may not perfectly fit a grid spacing, for instance */
int aspect; /* -1/+1 when we get -R from a grid whose x and y coordinates are the same units, else 0 */
uint32_t registration; /* Registration mode of a grid given via -r or -Rgrid */
int row_order; /* Order of rows in NetCDF output: 0 (not set) or k_nc_start_north or k_nc_start_south */
unsigned int mode; /* For modern mode only: 0 = get exact region from data, 1 = rounded region from data */
double wesn[6]; /* Boundaries of west, east, south, north, low-z and hi-z */
double wesn_orig[4]; /* Original Boundaries of west, east, south, north (oblique projection may reset wesn above) */
double inc[2]; /* For grid increments set via -Idx/dy or implicitly via -Ggrid */
char string[GMT_LEN256];
} R;
struct U { /* -U */
bool active;
unsigned int just;
double x, y;
char string[GMT_LEN64]; /* User override for timestamp */
char *label; /* Content not counted by sizeof (struct) */
} U;
struct V { /* -V */
bool active;
} V;
struct X { /* -X */
bool active;
double off;
char mode; /* a, c, f, or r */
} X;
struct Y { /* -Y */
bool active;
double off;
char mode; /* a, c, f, or r */
} Y;
struct a { /* -a<col>=<name>[:<type>][,col>=<name>[:<type>], etc][+g<geometry>] */
bool active;
enum GMT_enum_ogr geometry;
unsigned int n_aspatial;
bool clip; /* true if we wish to clip lines/polygons at Dateline [false] */
bool output; /* true when we wish to build OGR output */
int col[MAX_ASPATIAL]; /* Col id, include negative items such as GMT_IS_T (-5) */
int ogr[MAX_ASPATIAL]; /* Column order, or -1 if not set */
enum GMT_enum_type type[MAX_ASPATIAL];
char *name[MAX_ASPATIAL];
char string[GMT_LEN256];
} a;
struct b { /* -b[i][o][s|S][d|D][#cols][cvar1/var2/...] */
bool active[3]; /* true if current input/output is in native binary format */
bool nc[2]; /* True if netcdf i/o */
bool o_delay; /* true if we don't know number of output columns until we have read at least one input record */
bool bin_primary; /* true if we need to switch back to binary after reading a secondary file in ascii */
enum GMT_swap_direction swab[2]; /* k_swap_in or k_swap_out if current binary input/output must be byte-swapped, else k_swap_none */
uint64_t ncol[2]; /* Number of expected columns of input/output
0 means it will be determined by program */
char type[2]; /* Default column type, if set [d for double] */
char varnames[GMT_BUFSIZ]; /* List of variable names to be input/output in netCDF mode [GMT4 COMPATIBILITY ONLY] */
char string[GMT_LEN256];
} b;
struct d { /* -d[i][o]<nan_proxy> */
bool active[2];
bool is_zero[2];
unsigned int first_col[2]; /* Only apply from this column onward */
double nan_proxy[2];
char string[GMT_LEN64];
} d;
struct e { /* -e[~]\"search string\"] */
bool active;
char string[GMT_LEN256];
struct GMT_TEXT_SELECTION *select;
} e;
struct f { /* -f[i|o]<col>|<colrange>[t|T|g],.. */
bool active[2]; /* For GMT_IN|OUT */
bool is_geo[2]; /* true if -f[i|o]g was set to force a Cartesian grid to be seen as geographic */
bool is_cart[2]; /* true if -f[i|o]c was set to force a geographic grid to be seen as Cartesian */
char string[GMT_LEN64];
} f;
struct g { /* -g[+]x|x|y|Y|d|Y<gap>[unit] */
bool active;
bool selected;
unsigned int n_methods; /* How many different criteria to apply */
uint64_t n_col; /* Largest column-number needed to be read */
bool match_all; /* If true then all specified criteria must be met to be a gap [default is any of them] */
enum GMT_enum_gaps method[GMT_N_GAP_METHODS]; /* How distances are computed for each criteria */
int64_t col[GMT_N_GAP_METHODS]; /* Which column to use (-1 for x,y distance) */
double gap[GMT_N_GAP_METHODS]; /* The critical distances for each criteria */
double (*get_dist[GMT_N_GAP_METHODS]) (struct GMT_CTRL *GMT, uint64_t); /* Pointers to functions that compute those distances */
char string[GMT_LEN64];
} g;
struct h { /* -h[i|o][<nrecs>][+d][+c][+m[<text>]][+r<remark>][+t<title>] */
bool active;
bool add_colnames;
unsigned int mode;
unsigned int n_recs;
char *title;
char *remark;
char *colnames; /* Not set by -h but maintained here */
char *multi_segment; /* To hold a multi-segment string */
char string[GMT_LEN256];
} h;
struct i { /* -i[<col>|<colrange>,...][t[<word>]] */
bool active;
struct GMT_COL_IO col;
} i;
struct j { /* -je|f|g [g] */
bool active;
enum GMT_enum_mdist mode; /* Defaults to GMT_GREATCIRCLE */
char string[GMT_LEN8];
} j;
struct l { /* -l[<label>][+s<size>][+t<title>][+n<ncols>][+d<gap>/<pen>] */
bool active;
struct GMT_LEGEND_ITEM item;
} l;
struct n { /* -n[b|c|l|n][+a][+b<BC>][+c][+t<threshold>] (and +A for debugging) */
bool active;
bool antialias; /* Defaults to true, if supported */
bool save_debug; /* Write antialias counters to tmp grid */
bool truncate; /* Defaults to false */
unsigned int interpolant; /* Defaults to BCR_BICUBIC */
bool bc_set; /* true if +b was parsed */
bool periodic[2]; /* For periodic non-geographic grids */
char BC[4]; /* For BC settings via +bg|n[x|y]|p[x|y] */
double threshold; /* Defaults to 0.5 */
double range[2], half_range[2]; /* For periodic non-geographic grids */
char string[GMT_LEN64]; /* Copy of argument */
} n;
struct o { /* -o[<col>|<colrange>,...][t[<word>]] */
bool active;
struct GMT_COL_IO col;
} o;
struct p { /* -p<az>[/<el>[/<z0>]]+wlon0/lat0[/z0]][+vx0[cip]/y0[cip]] */
bool active;
bool do_z_rotation; /* true if rotating plot about a vertical axis */
double z_rotation; /* Rotation of <angle> about vertical axis */
} p;
struct q { /* -q[i|o]<rows>,...[+c<col>][+a|t|s] */
bool active[2];
bool inverse[2];
char string[2][GMT_LEN64];
unsigned int col; /* When +c<col> sets a specific data column */
unsigned int mode; /* 1 for in row-range check, 2 for in time check, 3 for out-row check, 4 for out-time check */
uint64_t *rec; /* POinter to the relevant record counter (dataset, table, segment) */
} q;
struct s { /* -s[r] */
bool active;
char string[GMT_LEN64];
} s;
struct t { /* -t[<filltransparency>[/<stroketransparency>]][+f][+s] */
bool active;
bool variable;
unsigned int mode; /* 1 = fill, 2 = stroke, 3 for both */
unsigned int n_transparencies; /* How many to read from file if no values given */
double value[2];
} t;
struct w { /* -w[<col>]y|m|w|d|p<period>[/<phase>] */
bool active;
char string[GMT_LEN64];
} w;
struct x { /* -x[[-]<n>] */
bool active;
int n_threads;
} x;
struct colon { /* -:[i|o] */
bool active;
bool toggle[2];
char string[2][GMT_LEN16];
} colon;
};
#endif /* GMT_COMMON_H */