This repository was archived by the owner on Sep 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgpxsplit.cpp
More file actions
596 lines (497 loc) · 14.2 KB
/
gpxsplit.cpp
File metadata and controls
596 lines (497 loc) · 14.2 KB
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
#include <iostream>
#include <cstring>
#include <fstream>
#include <list>
#include <cmath>
#include <ctime>
#include <limits>
#include <iomanip>
#include <stdexcept>
#include "XMLParser.h"
const std::string tool = "gpxsplit";
const std::string version = "0.1.0";
// ----------------------------------------------------------------------------
class GpxSplit : public XMLParserHandler
{
public:
// -- Constructor -----------------------------------------------------------
GpxSplit() :
_outputFile(&std::cout),
_TrkNr(0),
_TrkSegNr(0),
_inTrkSeg(false),
_inTime(false),
_analyse(false),
_time(-1),
_distance(-1),
_duration(-1)
{
}
// -- Deconstructor ---------------------------------------------------------
virtual ~GpxSplit()
{
}
// -- Properties ------------------------------------------------------------
void setAnalyse(bool analyse) { _analyse = analyse; }
bool getAnalyse() { return _analyse; }
void setDistance(double distance) { _distance = distance; }
void setTime(time_t time) { _time = time; }
void setDuration(int seconds) { _duration = seconds; }
// -- Parse a file ----------------------------------------------------------
bool parseFile(std::istream &input, std::ostream &output)
{
_path.clear();
_outputFile = &output;
_TrkNr = 0;
_TrkSegNr = 0;
XMLParser parser(this);
parser.parse(input);
return true;
}
static double getDouble(const std::string &value)
{
try
{
return std::stod(value);
}
catch (...)
{
return std::numeric_limits<double>::min();
}
}
static double getInt(const std::string &value)
{
try
{
return std::stoi(value);
}
catch (...)
{
return 0;
}
}
private:
// -- Types -----------------------------------------------------------------
enum ChunkType { TEXT, POINT };
struct Chunk
{
Chunk()
{
clear(TEXT);
}
void clear(ChunkType type)
{
_type = type;
_text.clear();
_lat = 0.0;
_lon = 0.0;
_distance = -1.0;
_timeStr.clear();
_time = -1.0;
}
ChunkType _type;
std::string _text;
double _lat;
double _lon;
double _distance;
std::string _timeStr;
time_t _time;
};
// -- Methods ---------------------------------------------------------------
static bool getDoubleAttribute(const Attributes &atts, const std::string &key, double &value)
{
auto iter = atts.find(key);
if (iter == atts.end()) return false;
if (iter->second.empty()) return false;
try
{
value = std::stod(iter->second);
return true;
}
catch(...)
{
return false;
}
}
void store(const std::string &text)
{
if (_inTrkSeg)
{
_current._text.append(text);
}
else if (!_analyse)
{
*_outputFile << text;
}
}
void processTimeStr(std::string &timeStr, time_t &time)
{
timeStr = XMLParser::trim(timeStr);
if (timeStr.size() == 0) return;
struct tm tm;
if (strptime(timeStr.c_str(), "%Y-%m-%dT%TZ", &tm) == nullptr) return;
time = mktime(&tm);
}
// http://www.movable-type.co.uk/scripts/latlong.html
static double deg2rad(double deg)
{
return (deg * M_PI) / 180.0;
}
// Distance in metres
static double calcDistance(double lat1deg, double lon1deg, double lat2deg, double lon2deg)
{
const double R = 6371E3; // m
double lat1rad = deg2rad(lat1deg);
double lon1rad = deg2rad(lon1deg);
double lat2rad = deg2rad(lat2deg);
double lon2rad = deg2rad(lon2deg);
double dlat = lat2rad - lat1rad;
double dlon = lon2rad - lon1rad;
double a = sin(dlat / 2.0) * sin(dlat / 2.0) + cos(lat1rad) * cos(lat2rad) * sin(dlon / 2.0) * sin(dlon / 2.0);
double c = 2.0 * atan2(sqrt(a), sqrt(1.0 - a));
return c * R;
}
void analyseChunks()
{
int trkPtNr = 0;
Chunk previous;
for (auto iter = _chunks.begin(); iter != _chunks.end(); ++iter)
{
if (iter->_type == POINT)
{
enum {NONE, DISTANCE, TIME, DURATION} reason = NONE;
trkPtNr++;
if (_distance > 0 && iter->_distance > _distance)
{
reason = DISTANCE;
}
else if (_time > 0 && previous._time > 0 && iter->_time > 0 && previous._time <= _time && iter->_time > _time)
{
reason = TIME;
}
else if (_duration > 0 && previous._time > 0 && iter->_time > 0 && (iter->_time - previous._time) > _duration)
{
reason = DURATION;
}
if (reason != NONE)
{
if (_analyse)
{
std::cout << "Track:" << _TrkNr << " Segment:" << _TrkSegNr << " Point:" << trkPtNr << " is split on ";
switch(reason)
{
case DISTANCE:
std::cout << "distance:" << iter->_distance << "m (" << previous._lat << ',' << previous._lon << ") versus (" << iter->_lat << ',' << iter->_lon << ")" << std::endl;
break;
case TIME:
std::cout << "time:" << previous._timeStr << " versus " << iter->_timeStr << std::endl;
break;
case DURATION:
std::cout << "time duration " << previous._timeStr << " versus " << iter->_timeStr << std::endl;
break;
}
}
else
{
*_outputFile << _endTrkSeg;
*_outputFile << _startTrkSeg;
}
}
previous = *iter;
}
if (!_analyse) *_outputFile << iter->_text;
}
}
void doStartElement(const std::string &text, const std::string &name, const Attributes &attributes)
{
_path.append("/");
_path.append(name);
if (_path == "/gpx/trk")
{
_TrkNr++;
_TrkSegNr = 0;
}
else if (_path == "/gpx/trk/trkseg")
{
_startTrkSeg = text;
_chunks.clear();
_current.clear(TEXT);
_previous.clear(TEXT);
_inTrkSeg = true;
_TrkSegNr++;
}
else if (_path == "/gpx/trk/trkseg/trkpt")
{
if (!_current._text.empty()) _chunks.push_back(_current);
_current.clear(TEXT);
if (getDoubleAttribute(attributes, "lat", _current._lat) &&
getDoubleAttribute(attributes, "lon", _current._lon))
{
_current._type = POINT;
if (_previous._type == POINT)
{
_current._distance = calcDistance(_previous._lat, _previous._lon, _current._lat, _current._lon);
}
}
}
else if (_path == "/gpx/trk/trkseg/trkpt/time")
{
// <time>2012-12-03T13:13:38Z</time>
_inTime = true;
_current._timeStr.clear();
}
}
void doEndElement(const std::string &text)
{
if (_path == "/gpx/trk/trkseg")
{
_endTrkSeg = text;
if (!_current._text.empty()) _chunks.push_back(_current);
analyseChunks();
_inTrkSeg = false;
}
else if (_path == "/gpx/trk/trkseg/trkpt")
{
_chunks.push_back(_current);
if (_current._type == POINT) _previous = _current;
_current.clear(TEXT);
}
else if (_path == "/gpx/trk/trkseg/trkpt/time")
{
_inTime = false;
processTimeStr(_current._timeStr, _current._time);
}
size_t i = _path.find_last_of('/');
if (i != std::string::npos) _path.erase(i);
}
public:
// -- Callbacks -------------------------------------------------------------
virtual void xmlDecl(const std::string &text, const Attributes &)
{
store(text);
}
virtual void processingInstruction(const std::string &text, const std::string &, const std::string &)
{
store(text);
}
virtual void docTypeDecl(const std::string &text)
{
store(text);
}
virtual void unhandled(const std::string &text, int lineNumber, int columnNumber)
{
std::cerr << " ERROR: Unexpected gpx info: " << text << " on line: " << lineNumber << " columnNumber: " << columnNumber << std::endl;
exit(1);
}
virtual void cdataDecl(const std::string &text, const std::string &)
{
store(text);
}
virtual void comment(const std::string &text, const std::string &)
{
store(text);
}
virtual void startEndElement(const std::string &text, const std::string &name, const Attributes &attributes)
{
doStartElement(text, name, attributes);
store(text);
doEndElement(text);
}
virtual void startElement(const std::string &text, const std::string &name, const Attributes &attributes)
{
doStartElement(text, name, attributes);
store(text);
}
virtual void text(const std::string &text)
{
if (_inTime)
{
_current._timeStr.append(text);
}
store(text);
}
virtual void endElement(const std::string &text, const std::string &)
{
store(text);
doEndElement(text);
}
private:
// -- Members ---------------------------------------------------------------
std::string _path;
std::ostream *_outputFile;
int _TrkNr;
int _TrkSegNr;
bool _inTrkSeg;
bool _inTime;
std::string _startTrkSeg;
std::string _endTrkSeg;
Chunk _current;
Chunk _previous;
std::list<Chunk> _chunks;
bool _analyse;
time_t _time;
double _distance;
int _duration;
};
// -- Main program ------------------------------------------------------------
int main(int argc, char *argv[])
{
GpxSplit gpxSplit;
std::string inputFilename;
std::string outputFilename;
int i = 1;
while (i < argc)
{
if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "-?") == 0)
{
std::cout << "Usage: " << tool << " [-h] [-v] [-a] [-d <distance>] [-t \"<time>\"] [-s <seconds>] [-m <minutes>] [-u <hours>] [-o <out.gpx>] [<file.gpx>]" << std::endl;
std::cout << " -h help" << std::endl;
std::cout << " -v show version" << std::endl;
std::cout << " -a analyse the file for splitting" << std::endl;
std::cout << " -d <distance> split based on distance in metres" << std::endl;
std::cout << " -t \"<time>\" split based on time, format: yyyy-mm-dd hh:mm:ss" << std::endl;
std::cout << " -s <duration> split based on time duration, in seconds" << std::endl;
std::cout << " -m <duration> split based on time duration, in minutes" << std::endl;
std::cout << " -u <duration> split based on time duration, in hours" << std::endl;
std::cout << " -o <out.gpx> the output gpx file (overwrites existing file)" << std::endl;
std::cout << " file.gpx the input gpx file" << std::endl << std::endl;
std::cout << " Split the track segments in a gpx in multiple track segments based on distance or time." << std::endl;
return 0;
}
else if (strcmp(argv[i], "-v") == 0)
{
std::cout << tool << " v" << version << std::endl;
return 0;
}
else if (strcmp(argv[i], "-a") == 0)
{
if (!outputFilename.empty())
{
std::cerr << "Error: option -a only valid without output file." << std::endl;
}
else
{
gpxSplit.setAnalyse(true);
}
}
else if (strcmp(argv[i], "-d") == 0 && i+1 < argc)
{
double distance = GpxSplit::getDouble(argv[++i]);
if (distance > 0.0)
{
gpxSplit.setDistance(distance);
}
else
{
std::cerr << "Error: invalid distance for option -d." << std::endl;
return 1;
}
}
else if (strcmp(argv[i], "-t") == 0 && i+1 < argc)
{
struct tm fields;
if (strptime(argv[++i], "%Y-%m-%d %H:%M:%S", &fields) != nullptr)
{
gpxSplit.setTime(mktime(&fields));
}
else
{
std::cerr << "Error: invalid date/time: " << argv[i] << std::endl;
}
}
else if (strcmp(argv[i], "-s") == 0 && i+1 < argc)
{
int seconds = GpxSplit::getInt(argv[++i]);
if (seconds > 0)
{
gpxSplit.setDuration(seconds);
}
else
{
std::cerr << "Error: invalid time duration: " << argv[i] << std::endl;
}
}
else if (strcmp(argv[i], "-m") == 0 && i+1 < argc)
{
int seconds = GpxSplit::getInt(argv[++i]) * 60;
if (seconds > 0)
{
gpxSplit.setDuration(seconds);
}
else
{
std::cerr << "Error: invalid time duration: " << argv[i] << std::endl;
}
}
else if (strcmp(argv[i], "-u") == 0 && i+1 << argc)
{
int seconds = GpxSplit::getInt(argv[++i]) * 3600;
if (seconds > 0)
{
gpxSplit.setDuration(seconds);
}
else
{
std::cerr << "Error: invalid time duration: " << argv[i] << std::endl;
}
}
else if (strcmp(argv[i], "-o") == 0 && i+1 < argc)
{
if (gpxSplit.getAnalyse())
{
std::cerr << "Error: option -o is not valid for analyse mode." << std::endl;
return 1;
}
else if (outputFilename.empty())
{
outputFilename = argv[++i];
}
else
{
std::cerr << "Error: multiple output files specified: " << argv[i] << std::endl;
return 1;
}
}
else if (argv[i][0] != '-')
{
if (inputFilename.empty())
{
inputFilename = argv[i];
}
else
{
std::cerr << "Error: multiple input files defined:" << argv[i] << std::endl;
return 1;
}
}
else
{
std::cerr << "Error: unknown option:" << argv[i] << std::endl;
return 1;
}
i++;
}
std::ifstream input;
if (!inputFilename.empty())
{
input.open(inputFilename.c_str());
if (!input.is_open())
{
std::cerr << "Error: unable to open the inputfile: " << inputFilename << std::endl;
return 1;
}
}
std::ofstream output;
if (!outputFilename.empty())
{
output.open(outputFilename.c_str());
if (!output.is_open())
{
std::cerr << "Error: unable to open the outputfile: " << outputFilename << std::endl;
}
}
gpxSplit.parseFile((inputFilename.empty() ? std::cin : input), (outputFilename.empty() ? std::cout : output));
if (!inputFilename .empty()) input.close();
if (!outputFilename.empty()) output.close();
return 0;
}