-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathkml2gmt.c
366 lines (316 loc) · 14.3 KB
/
kml2gmt.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
/*--------------------------------------------------------------------
*
* 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: kml2gmt is a reformatter that takes KML files and extracts GMT tables;
* it is the opposite of kml2gmt.
*
* Author: Paul Wessel
* Date: 1-JAN-2010
* Version: 6 API
*/
#include "gmt_dev.h"
#include "longopt/kml2gmt_inc.h"
#define THIS_MODULE_CLASSIC_NAME "kml2gmt"
#define THIS_MODULE_MODERN_NAME "kml2gmt"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Extract GMT table data from Google Earth KML files"
#define THIS_MODULE_KEYS ">D}"
#define THIS_MODULE_NEEDS ""
#define THIS_MODULE_OPTIONS "-:Vbdh" GMT_OPT("HMm")
#define POINT 0
#define LINE 1
#define POLYGON 2
struct KML2GMT_CTRL {
struct KML2GMT_In { /* in file */
bool active;
char *file;
} In;
struct KML2GMT_E { /* -E */
bool active;
} E;
struct KML2GMT_F { /* -F */
bool active;
unsigned int mode;
unsigned int geometry;
} F;
struct KML2GMT_Z { /* -Z */
bool active;
} Z;
};
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct KML2GMT_CTRL *C;
C = gmt_M_memory (GMT, NULL, 1, struct KML2GMT_CTRL);
/* Initialize values whose defaults are not 0/false/NULL */
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct KML2GMT_CTRL *C) { /* Deallocate control structure */
if (!C) return;
gmt_M_str_free (C->In.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 [<kmlfiles>] [-E] [-Fs|l|p] [%s] [-Z] [%s] [%s] [%s] [%s] [%s]\n",
name, GMT_V_OPT, GMT_bo_OPT, GMT_do_OPT, GMT_ho_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_Usage (API, 1, "\n<kmlfiles> is one or more Google Earth KML files. "
"If no file(s) is given, standard input is read.");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:\n");
GMT_Usage (API, 1, "\n-E Get z-values from the ExtendData property (only single <SimpleData name=\"string\"> implemented so far).");
GMT_Usage (API, 1, "\n-Fs|l|p");
GMT_Usage (API, -2, "Restrict feature type; choose from (s)symbol, (l)ine, or (p)olygon. "
"Use to only output data for the selected feature type [all].");
GMT_Usage (API, 1, "\n-Z Output the z-column from the KML file [Only lon,lat is output].");
GMT_Option (API, "V,bo,do,h,:,.");
return (GMT_MODULE_USAGE);
}
static int parse (struct GMT_CTRL *GMT, struct KML2GMT_CTRL *Ctrl, struct GMT_OPTION *options) {
/* This parses the options provided to kml2gmt 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;
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 files */
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_DATASET, GMT_IN, GMT_FILE_REMOTE, &(Ctrl->In.file));
break;
/* Processes program-specific parameters */
case 'E': /* Feature type */
n_errors += gmt_M_repeated_module_option (API, Ctrl->E.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
Ctrl->Z.active = true; /* Needs this too */
break;
case 'F': /* Feature type */
n_errors += gmt_M_repeated_module_option (API, Ctrl->F.active);
switch (opt->arg[0]) {
case 's':
Ctrl->F.mode = POINT;
break;
case 'l':
Ctrl->F.mode = LINE;
Ctrl->F.geometry = GMT_IS_LINE;
break;
case 'p':
Ctrl->F.mode = POLYGON;
Ctrl->F.geometry = GMT_IS_POLY;
break;
default:
GMT_Report (API, GMT_MSG_ERROR, "Bad feature type. Use s, l or p.\n");
n_errors++;
break;
}
break;
case 'Z':
n_errors += gmt_M_repeated_module_option (API, Ctrl->Z.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
break;
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
break;
}
}
if (GMT->common.b.active[GMT_IN] && GMT->common.b.ncol[GMT_IN] == 0) GMT->common.b.ncol[GMT_IN] = 2;
n_errors += gmt_M_check_condition (GMT, Ctrl->In.active && access (Ctrl->In.file, R_OK), "Cannot read file %s\n", Ctrl->In.file);
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_kml2gmt (void *V_API, int mode, void *args) {
unsigned int i, start, fmode = POINT, n_features = 0, pos;
int error = 0, n_scan;
size_t length;
bool scan = true, first = true, skip, single = false, extended = false;
char buffer[GMT_BUFSIZ] = {""}, name[GMT_BUFSIZ] = {""};
char word[GMT_LEN128] = {""}, description[GMT_BUFSIZ] = {""};
char *gm[3] = {"Point", "Line", "Polygon"}, *line = NULL;
double out[3], elev;
FILE *fp = NULL;
struct GMT_RECORD *Out = NULL;
struct KML2GMT_CTRL *Ctrl = NULL;
struct GMT_CTRL *GMT = NULL, *GMT_cpy = NULL; /* General GMT 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 */
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 kml2gmt main code ----------------------------*/
GMT_Report (API, GMT_MSG_INFORMATION, "Processing input KML data\n");
gmt_set_geographic (GMT, GMT_IN);
gmt_set_geographic (GMT, GMT_OUT);
gmt_set_segmentheader (GMT, GMT_OUT, true); /* Turn on segment headers on output */
GMT_Set_Columns (API, GMT_OUT, 2 + Ctrl->Z.active, GMT_COL_FIX_NO_TEXT);
if (GMT_Init_IO (API, GMT_IS_DATASET, GMT_IS_PLP, GMT_OUT, GMT_ADD_DEFAULT, 0, options) != GMT_NOERROR) { /* Registers default output destination, unless already set */
Return (API->error);
}
if (GMT_Begin_IO (API, GMT_IS_DATASET, GMT_OUT, GMT_HEADER_ON) != GMT_NOERROR) { /* Enables data output and sets access mode */
Return (API->error);
}
if (GMT_Set_Geometry (API, GMT_OUT, Ctrl->F.geometry) != GMT_NOERROR) { /* Sets output geometry */
Return (API->error);
}
/* We read the input from stdin or file via fscanf and fgets. We cannot easily
* switch this over to using GMT_Get_Record since the kml file may have multiple
* coordinate pairs/triplets on the same line. It is also unlikely anyone really
* needs to call GMT_kml2gmt with a memory pointer, so this is a small sacrifice.
* P. Wessel, April 2013. */
if (Ctrl->In.active) {
if ((fp = gmt_fopen (GMT, Ctrl->In.file, "r")) == NULL) {
GMT_Report (API, GMT_MSG_ERROR, "Cannot open file %s\n", Ctrl->In.file);
Return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (API, GMT_MSG_INFORMATION, "Processing %s\n", Ctrl->In.file);
sprintf (buffer, "kml2gmt: KML read from %s", Ctrl->In.file);
}
else { /* Just read standard input */
fp = stdin;
GMT_Report (API, GMT_MSG_INFORMATION, "Reading from standard input\n");
sprintf (buffer, "kml2gmt: KML read from standard input");
}
if (Ctrl->F.active)
GMT_Report (API, GMT_MSG_INFORMATION, "Only output features with geometry: %s\n", gm[Ctrl->F.mode]);
Out = gmt_new_record (GMT, out, buffer);
/* Now we are ready to take on some input values */
strcpy (GMT->current.setting.format_float_out, "%.12g"); /* Get enough decimals */
GMT_Put_Record (API, GMT_WRITE_TABLE_HEADER, Out); /* Write this to output */
Out->text = NULL;
line = gmt_M_memory (GMT, NULL, GMT_INITIAL_MEM_ROW_ALLOC, char);
while (fgets (line, GMT_INITIAL_MEM_ROW_ALLOC, fp)) {
if (strstr (line, "<Placemark")) { /* New Placemark, reset name and description */
scan = true;
name[0] = description[0] = 0;
}
if (strstr (line, "</Placemark")) scan = false;
if (!scan) continue;
if (strstr (line, "<Point")) fmode = POINT;
if (strstr (line, "<LineString")) fmode = LINE;
if (strstr (line, "<Polygon")) fmode = POLYGON;
skip = (Ctrl->F.active && fmode != Ctrl->F.mode);
length = strlen (line);
if (strstr (line, "<name>")) {
for (i = 0; i < length && line[i] != '>'; i++); /* Find end of <name> */
start = i + 1;
for (i = start; i < length && line[i] != '<'; i++); /* Find start of </name> */
line[i] = '\0';
strncpy (name, &line[start], GMT_BUFSIZ-1);
gmt_chop (name);
if (first && !skip) {
sprintf (buffer, "%s", &line[start]);
Out->text = buffer;
GMT_Put_Record (API, GMT_WRITE_TABLE_HEADER, Out); /* Write this to output */
first = false;
Out->text = NULL;
}
}
if (strstr (line, "<description>")) {
for (i = 0; i < length && line[i] != '>'; i++); /* Find end of <description> */
start = i + 1;
for (i = start; i < length && line[i] != '<'; i++); /* Find start of </description> */
line[i] = '\0';
strncpy (description, &line[start], GMT_BUFSIZ-1);
gmt_chop (description);
if (first && !skip) {
sprintf (buffer, "%s", &line[start]);
Out->text = buffer;
GMT_Put_Record (API, GMT_WRITE_TABLE_HEADER, Out); /* Write this to output */
Out->text = NULL;
first = false;
}
}
if (skip) continue;
if (name[0] || description[0]) {
GMT->current.io.segment_header[0] = 0;
if (name[0]) { strcat (GMT->current.io.segment_header, "-L\""); strcat (GMT->current.io.segment_header, name); strcat (GMT->current.io.segment_header, "\""); }
if (name[0] && description[0]) strcat (GMT->current.io.segment_header, " ");
if (description[0]) { strcat (GMT->current.io.segment_header, "-D\""); strcat (GMT->current.io.segment_header, description); strcat (GMT->current.io.segment_header, "\""); }
}
if (Ctrl->E.active && strstr (line, "<ExtendedData>")) {
/* https://developers.google.com/kml/documentation/kmlreference#extendeddata
But only a single <SimpleData name="string" is implemented here. */
fgets (line, GMT_INITIAL_MEM_ROW_ALLOC, fp);
if (strstr (line, "<SchemaData")) {
fgets (line, GMT_INITIAL_MEM_ROW_ALLOC, fp);
if (strstr (line, "<SimpleData")) {
char *p1, *p2;
p1 = strchr(line, '>'); p1++; /* Find end of <SimpleData */
p2 = strchr (&p1[0], '<'); p2[0] = '\0'; /* Find begin of </SimpleData>*/
elev = atof(p1);
extended = true;
}
else
extended = false;
}
}
if (!strstr (line, "<coordinates>")) continue;
/* We get here when the line says coordinates */
if (fmode == POINT && strstr (line, "</coordinates>")) { /* Process the single point */
if (!GMT->current.io.segment_header[0]) sprintf (GMT->current.io.segment_header, "Next Point");
}
else {
if (!GMT->current.io.segment_header[0]) sprintf (GMT->current.io.segment_header, "Next feature");
}
GMT_Put_Record (API, GMT_WRITE_SEGMENT_HEADER, NULL); /* Write segment header */
single = (strstr (line, "</coordinates>") != NULL); /* All on one line */
if (fmode == POINT && single) { /* Process the single point from current record */
for (i = 0; i < length && line[i] != '>'; i++); /* Find end of <coordinates> */
sscanf (&line[i+1], "%lg,%lg,%lg", &out[GMT_X], &out[GMT_Y], &out[GMT_Z]);
if (extended) out[GMT_Z] = elev;
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write this to output */
}
else if (single) { /* Process multiple points from current single record */
for (i = 0; i < length && line[i] != '>'; i++); /* Find end of <coordinates> */
pos = i + 1;
while (gmt_strtok (line, " \t", &pos, word)) { /* Look for clusters of x,y,z separated by whitespace */
n_scan = sscanf (word, "%lg,%lg,%lg", &out[GMT_X], &out[GMT_Y], &out[GMT_Z]);
if (extended) out[GMT_Z] = elev;
if (n_scan == 2 || n_scan == 3)
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write this to output */
else
break;
}
}
else { /* Processes points from separate lines */
while (fscanf (fp, "%lg,%lg,%lg", &out[GMT_X], &out[GMT_Y], &out[GMT_Z])) {
if (extended) out[GMT_Z] = elev; /* Replave Z by the extended data value */
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write this to output */
}
}
n_features++;
}
if (fp != stdin) fclose (fp);
gmt_M_free (GMT, Out);
gmt_M_free (GMT, line);
if (GMT_End_IO (API, GMT_OUT, 0) != GMT_NOERROR) { /* Disables further data output */
Return (API->error);
}
GMT_Report (API, GMT_MSG_INFORMATION, "Found %u features with selected geometry\n", n_features);
Return (GMT_NOERROR);
}