-
Notifications
You must be signed in to change notification settings - Fork 3
/
trackfile-hook-sample.js
301 lines (256 loc) · 8.17 KB
/
trackfile-hook-sample.js
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
"use strict"
export {
timeShift,
clearInvalidAltitude,
fixDescription,
removeAll,
sampleByDistance,
sampleByTimeInterval,
sampleByIndexInterval,
sampleBetweenTime,
convertTrackToLine,
sortByName,
splitAllPaths
};
import { TrackFile } from "./track.js";
/**
* 时间加上固定偏移,一般用于时区校正
*/
function timeShift(trackFile) {
const OffsetHour = -4; // 向前调整4小时
const OffsetSecond = OffsetHour * 3600;
const Offset = wp => { if(undefined != wp.timestamp) wp.timestamp += OffsetSecond; }
trackFile.points.forEach(point => { Offset(point.wayPoint); });
trackFile.lines.forEach(path => { path.wayPoints.forEach(Offset); });
trackFile.tracks.forEach(path => { path.wayPoints.forEach(Offset); });
return [trackFile];
}
/**
* 搜索坐标海拔为0的点,并将其海拔置为空白(去除噪声数据)
*/
function clearInvalidAltitude(trackFile) {
const Clear = wp => { if (0 == wp.altitude) wp.altitude = undefined; }
trackFile.points.forEach(point => { Clear(point.wayPoint); });
trackFile.lines.forEach(path => { path.wayPoints.forEach(Clear); });
trackFile.tracks.forEach(path => { path.wayPoints.forEach(Clear); });
return [trackFile];
}
/**
* 判断描述字段是否为CDATA,若是,则加上正确的标签。
*
* 在两步路App导出的轨迹可能会生成不合法的KML描述:如
*
* <description>
* <div>通过“两步路”生成</div>
* <div>上传者:ABC</div>
* <div>开始时间:2020-09-20 09:01:05</div>
* <div>结束时间:2020-09-20 18:19:50</div>
* </description>
*
* 需要给这段desc加上CDATA起始末尾标签,生成结果:
* <description>
* <![CDATA[通过“两步路”生成]]>
* <![CDATA[上传者:ABC]]>
* <![CDATA[开始时间:2020-09-20 09:01:05]]>
* <![CDATA[结束时间:2020-09-20 18:19:50]]>
* </description>
*
* 有的KML轨迹甚至转义div写入到kml文件中:如
*
* <description>
* <div>时间:2020-10-18 06:14:26</div>
* </description>
*
* 需要给这段desc加上CDATA起始末尾标签,生成结果:
*
* <description>
* <![CDATA[<div>时间:2020-10-18 06:14:26</div>]]>
* </description>
*/
function fixDescription(trackFile) {
// 匹配<tagName>开头和</tagName>结尾
const Regex = /^\<[a-zA-z0-9]*?\>.*\<\/[a-zA-z0-9]*?\>$/;
const Check = o => {
if(undefined == o.description)
return;
if (typeof o.description === 'string' && o.description.match(Regex))
o.description = { '__cdata': o.description };
else if(typeof o.description === 'object' && 'div' in o.description)
o.description = { '__cdata': o.description.div};
}
Check(trackFile);
trackFile.points.forEach(Check);
trackFile.lines.forEach(Check);
trackFile.tracks.forEach(Check);
return [trackFile];
}
/**
* 移除轨迹文件中的点、线、轨迹
*/
function removeAll(trackFile) {
trackFile.points = [];
trackFile.lines = [];
trackFile.tracks = [];
return [trackFile];
}
/**
* 对轨迹抽样,精简轨迹(按位移阈值)
* 将位移距离小于10米的点位剔除,只保留位移大于10米的点
* 注意:首尾两点不会被移除
*/
function sampleByDistance(trackFile) {
const MinDistance = 10;
const Check = path => {
let lastWayPoint = undefined;
const tailIdx = path.wayPoints.length - 1;
path.wayPoints.forEach((wp, idx, arr) => {
if (undefined == lastWayPoint || tailIdx == idx) {
lastWayPoint = wp;
return;
}
if (lastWayPoint.distanceTo(wp) < MinDistance)
arr[idx] = undefined; // remove it
else
lastWayPoint = wp;
});
path.wayPoints = path.wayPoints.filter(wp => undefined != wp);
};
trackFile.lines.forEach(Check);
trackFile.tracks.forEach(Check);
return [trackFile];
}
/**
* 对轨迹抽样,精简轨迹(按固定时间间隔)
* 注意:首尾两点不会被移除
*/
function sampleByTimeInterval(trackFile) {
const Interval = 2; // 每2秒取样
const Check = path => {
let lastWayPoint = undefined;
const tailIdx = path.wayPoints.length - 1;
path.wayPoints.forEach((wp, idx, arr) => {
if (undefined == lastWayPoint || tailIdx == idx) {
lastWayPoint = wp;
return;
}
if (wp.timestamp - lastWayPoint.timestamp < Interval)
arr[idx] = undefined; // remove it
else
lastWayPoint = wp;
});
path.wayPoints = path.wayPoints.filter(wp => undefined != wp);
};
trackFile.tracks.forEach(Check);
return [trackFile];
}
/**
* 对轨迹抽样,精简轨迹(按固定间隔点数)
* 注意:首尾两点不会被移除
*/
function sampleByIndexInterval(trackFile) {
const Interval = 3; // 每3个点取样
const Check = path => {
let lastIndex = undefined;
const tailIdx = path.wayPoints.length - 1;
path.wayPoints.forEach((wp, idx, arr) => {
if (undefined == lastIndex || tailIdx == idx) {
lastIndex = 0;
return;
}
if (idx - lastIndex < Interval)
arr[idx] = undefined; // remove it
else
lastIndex = idx;
});
path.wayPoints = path.wayPoints.filter(wp => undefined != wp);
};
trackFile.tracks.forEach(Check);
trackFile.lines.forEach(Check);
return [trackFile];
}
/**
* 对轨迹抽样,精简轨迹(取出某段时间内的轨迹)
*/
function sampleBetweenTime(trackFile) {
const T = s => Date.parse(s) / 1000;
const T1 = T('2024-02-16T04:30:00+08:00');
const T2 = T('2024-02-16T06:00:00+08:00');
const Filter = wp => T1 <= wp.timestamp && wp.timestamp <= T2;
trackFile.tracks.forEach(path => {
path.wayPoints = path.wayPoints.filter(Filter);
});
trackFile.tracks = trackFile.tracks.filter(path => path.wayPoints.length > 0);
return [trackFile];
}
/**
* 将轨迹转为不含时间信息的路径
*/
function convertTrackToLine(trackFile) {
// 这里只做简单的判断是否轨迹重叠:起点是否为同一个点(2米内)
const MinDistance = 2;
let lineStarts = trackFile.lines.map(path => path.wayPoints[0]);
trackFile.tracks.forEach(path => {
const trackStart = path.wayPoints[0];
const same = lineStarts.find(lineStart => lineStart.distanceTo(trackStart) < MinDistance);
if(!same){
trackFile.lines.push(path);
lineStarts.push(trackStart);
}
});
trackFile.tracks = []; // clear
if (trackFile.lines.length > 0)
return [trackFile];
return []; // ignore if track is empty
}
/**
* 按名字排序
*/
function sortByName(trackFile) {
const cmp = (a, b) => a.name.localeCompare(b.name);
trackFile.points.sort(cmp);
trackFile.tracks.sort(cmp);
trackFile.lines.sort(cmp);
return [trackFile];
}
/**
* 将轨迹以json形式输出到浏览器下载栏,可以提供给其它编程语言进行进一步处理
*/
function downloadAsJson(trackFile) {
const filename = '导出'+trackFile.name+'.json'
const newLink = $('<a>', {
text: filename,
download: filename,
href: URL.createObjectURL(new Blob([JSON.stringify(trackFile, null, 2)]))
});
const div = $('#exportedTrackList');
div.append(newLink);
div.append('<br/>');
return [trackFile];
}
/**
* 移除那些包含轨迹的文件
*/
function removeIfContainTrack(trackFile) {
if(trackFile.track.length > 0)
return false;
return [trackFile];
}
/**
* 分拆所有轨迹、线条
*/
function splitAllPaths(trackFile) {
let ret =[];
const Split = (path, isLine) => {
let t = new TrackFile;
if(isLine)
t.lines=[path];
else
t.tracks=[path];
ret.push(t);
}
const SplitLine = path => Split(path, true);
const SplitTrack = path => Split(path, false);
trackFile.lines.forEach(SplitLine);
trackFile.tracks.forEach(SplitTrack);
return ret;
}