-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpxutils.go
189 lines (161 loc) · 4.25 KB
/
gpxutils.go
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
//
// gpxutils.go
// gpxutis
//
// Created by Mario Martelli on 11.10.2019.
// Copyright © 2019 Mario Martelli. All rights reserved.
//
// This file is part of gpxutils.
//
// gpxutils is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// gpxutils 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with gpxutils. If not, see <http://www.gnu.org/licenses/>.
package main
import (
"encoding/xml"
"flag"
"fmt"
"io/ioutil"
"os"
"path"
"time"
"github.com/briandowns/spinner"
)
var (
readFile = ""
ls, split, tm bool
outDir = ""
begin, end time.Time
)
func main() {
// command line parsing
inPtr := flag.String("in", "none", "relative path to GPX file")
outPtr := flag.String("out", "out", "relative path to output directory")
flag.BoolVar(&split, "split", false, "write single files for tracks")
flag.BoolVar(&ls, "ls", false, "list tracks ")
flag.BoolVar(&tm, "time", false, "add time")
if inPtr == nil || *inPtr == "" {
panic("input file is missing")
}
if outPtr == nil || *outPtr == "" {
outDir = "out"
} else {
outDir = *outPtr
}
flag.Func("begin", "`start time`", func(s string) error {
// var begin time.Time
var err error
ds := time.Now().Format("2006-01-02") + "T" + s + ":00+02:00"
begin, err = time.Parse(time.RFC3339, ds)
if err != nil {
fmt.Println("Begin time not valid")
return err
}
return nil
})
flag.Func("end", "`end time`", func(s string) error {
var err error
ds := time.Now().Format("2006-01-02") + "T" + s + ":00+02:00"
end, err = time.Parse(time.RFC3339, ds)
if err != nil {
fmt.Println("Begin time not valid")
return err
}
return nil
})
flag.Parse()
// Open the file given at commandline
readFile = *inPtr
xmlFile, err := os.Open(readFile)
if err != nil {
fmt.Println("Error opening file:", err)
return
}
defer func() { _ = xmlFile.Close() }()
b, _ := ioutil.ReadAll(xmlFile)
// Progress spinner
s := spinner.New(spinner.CharSets[38], 200*time.Millisecond)
s.Prefix = "Processing input-file: "
s.Writer = os.Stderr
// Unmarshall gpx file
s.Start() // Start the spinner
var q Query
_ = xml.Unmarshal(b, &q)
s.Stop() // Stop Spinner
// Write each track to a single file
if split {
// Create out directory
if _, err = os.Stat(outDir); os.IsNotExist(err) {
_ = os.Mkdir(outDir, 0711)
}
s.Prefix = "Creating single files: "
s.Start() // Start the spinner
outfile := ""
for i, track := range q.Tracks {
if track.getTimestamp() != "unknown" {
outfile = track.getTimestamp()
} else {
basename := path.Base(*inPtr)
extension := path.Ext(basename)
name := basename[0 : len(basename)-len(extension)]
outfile = name + fmt.Sprintf("-%02d", i)
}
f, err := os.Create(outDir + "/" + outfile + ".gpx")
if err != nil {
fmt.Println(err)
continue
}
f.WriteString(track.gpx())
_ = f.Close()
}
s.Stop()
return
}
// List all tracks contained in file
if ls {
for _, line := range q.listOfTracks() {
fmt.Println(line)
}
fmt.Println("Total amout of tracks in file: ", q.numberOfTracks())
}
if tm {
outfile := ""
switch {
case begin.IsZero():
fmt.Println("Valid start time must be given")
return
case end.IsZero():
fmt.Println("Valid end time must be given")
return
case end.Before(begin):
fmt.Println("End time must be after start time")
return
case end.Equal(begin):
fmt.Println("End time must be after start time")
return
}
for i := range q.Tracks {
basename := path.Base(*inPtr)
extension := path.Ext(basename)
name := basename[0 : len(basename)-len(extension)]
outfile = name + fmt.Sprintf("-%02d", i)
f, err := os.Create(outDir + "/" + outfile + ".gpx")
if err != nil {
fmt.Println(err)
continue
}
f.WriteString(q.Tracks[0].setTimeStamps(begin, end))
_ = f.Close()
}
return
}
}