Apr 18, 2026 8.5 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "JFK",
9 "to": "WAW",
10 "date": "2022-02-28",
11 "mode": "flight (LO27), next day"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -73.7781,
18 40.6413
19 ],
20 [
21 20.9671,
22 52.1657
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Warsaw, PL",
32 "to": "Berlin, DE",
33 "date": "2022-03-19",
34 "mode": "train"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 21.0122,
41 52.2297
42 ],
43 [
44 13.405,
45 52.52
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "flight",
54 "from": "BER",
55 "to": "TLL",
56 "date": "2022-04-14",
57 "mode": "flight (BT822, A220-30)"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 13.5033,
64 52.3667
65 ],
66 [
67 24.8328,
68 59.4133
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "route",
77 "from": "Tallinn, EE",
78 "to": "Helsinki, FI",
79 "date": "2022-05-16",
80 "mode": "boat"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 24.7536,
87 59.437
88 ],
89 [
90 24.9384,
91 60.1699
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "flight",
100 "from": "HEL",
101 "to": "EDI",
102 "date": "2022-05-25",
103 "mode": "flight (AY1371), transit"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 24.9633,
110 60.3172
111 ],
112 [
113 -3.3725,
114 55.95
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "route",
123 "from": "Edinburgh, GB",
124 "to": "Glasgow, GB",
125 "date": "2022-05-25",
126 "mode": "bus"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 -3.1883,
133 55.9533
134 ],
135 [
136 -4.2518,
137 55.8642
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "route",
146 "from": "Glasgow, GB",
147 "to": "Manchester, GB",
148 "date": "2022-06-02",
149 "mode": "train"
150 },
151 "geometry": {
152 "type": "LineString",
153 "coordinates": [
154 [
155 -4.2518,
156 55.8642
157 ],
158 [
159 -2.2426,
160 53.4808
161 ]
162 ]
163 }
164 },
165 {
166 "type": "Feature",
167 "properties": {
168 "layer": "route",
169 "from": "Manchester, GB",
170 "to": "Cardiff, GB",
171 "date": "2022-06-04",
172 "mode": "train"
173 },
174 "geometry": {
175 "type": "LineString",
176 "coordinates": [
177 [
178 -2.2426,
179 53.4808
180 ],
181 [
182 -3.1791,
183 51.4816
184 ]
185 ]
186 }
187 },
188 {
189 "type": "Feature",
190 "properties": {
191 "layer": "flight",
192 "from": "CWL",
193 "to": "DUB",
194 "date": "2022-06-06",
195 "mode": "flight (FR 635)"
196 },
197 "geometry": {
198 "type": "LineString",
199 "coordinates": [
200 [
201 -3.3433,
202 51.3967
203 ],
204 [
205 -6.2701,
206 53.4264
207 ]
208 ]
209 }
210 },
211 {
212 "type": "Feature",
213 "properties": {
214 "layer": "flight",
215 "from": "DUB",
216 "to": "JFK",
217 "date": "2022-06-07",
218 "mode": "flight (EI107)"
219 },
220 "geometry": {
221 "type": "LineString",
222 "coordinates": [
223 [
224 -6.2701,
225 53.4264
226 ],
227 [
228 -73.7781,
229 40.6413
230 ]
231 ]
232 }
233 },
234 {
235 "type": "Feature",
236 "properties": {
237 "layer": "stop",
238 "name": "JFK",
239 "transit": false
240 },
241 "geometry": {
242 "type": "Point",
243 "coordinates": [
244 -73.7781,
245 40.6413
246 ]
247 }
248 },
249 {
250 "type": "Feature",
251 "properties": {
252 "layer": "stop",
253 "name": "WAW",
254 "transit": false
255 },
256 "geometry": {
257 "type": "Point",
258 "coordinates": [
259 20.9671,
260 52.1657
261 ]
262 }
263 },
264 {
265 "type": "Feature",
266 "properties": {
267 "layer": "stop",
268 "name": "Warsaw, PL",
269 "transit": false
270 },
271 "geometry": {
272 "type": "Point",
273 "coordinates": [
274 21.0122,
275 52.2297
276 ]
277 }
278 },
279 {
280 "type": "Feature",
281 "properties": {
282 "layer": "stop",
283 "name": "Berlin, DE",
284 "transit": false
285 },
286 "geometry": {
287 "type": "Point",
288 "coordinates": [
289 13.405,
290 52.52
291 ]
292 }
293 },
294 {
295 "type": "Feature",
296 "properties": {
297 "layer": "stop",
298 "name": "BER",
299 "transit": false
300 },
301 "geometry": {
302 "type": "Point",
303 "coordinates": [
304 13.5033,
305 52.3667
306 ]
307 }
308 },
309 {
310 "type": "Feature",
311 "properties": {
312 "layer": "stop",
313 "name": "TLL",
314 "transit": false
315 },
316 "geometry": {
317 "type": "Point",
318 "coordinates": [
319 24.8328,
320 59.4133
321 ]
322 }
323 },
324 {
325 "type": "Feature",
326 "properties": {
327 "layer": "stop",
328 "name": "Tallinn, EE",
329 "transit": false
330 },
331 "geometry": {
332 "type": "Point",
333 "coordinates": [
334 24.7536,
335 59.437
336 ]
337 }
338 },
339 {
340 "type": "Feature",
341 "properties": {
342 "layer": "stop",
343 "name": "Helsinki, FI",
344 "transit": false
345 },
346 "geometry": {
347 "type": "Point",
348 "coordinates": [
349 24.9384,
350 60.1699
351 ]
352 }
353 },
354 {
355 "type": "Feature",
356 "properties": {
357 "layer": "stop",
358 "name": "HEL",
359 "transit": true
360 },
361 "geometry": {
362 "type": "Point",
363 "coordinates": [
364 24.9633,
365 60.3172
366 ]
367 }
368 },
369 {
370 "type": "Feature",
371 "properties": {
372 "layer": "stop",
373 "name": "EDI",
374 "transit": true
375 },
376 "geometry": {
377 "type": "Point",
378 "coordinates": [
379 -3.3725,
380 55.95
381 ]
382 }
383 },
384 {
385 "type": "Feature",
386 "properties": {
387 "layer": "stop",
388 "name": "Edinburgh, GB",
389 "transit": false
390 },
391 "geometry": {
392 "type": "Point",
393 "coordinates": [
394 -3.1883,
395 55.9533
396 ]
397 }
398 },
399 {
400 "type": "Feature",
401 "properties": {
402 "layer": "stop",
403 "name": "Glasgow, GB",
404 "transit": false
405 },
406 "geometry": {
407 "type": "Point",
408 "coordinates": [
409 -4.2518,
410 55.8642
411 ]
412 }
413 },
414 {
415 "type": "Feature",
416 "properties": {
417 "layer": "stop",
418 "name": "Manchester, GB",
419 "transit": false
420 },
421 "geometry": {
422 "type": "Point",
423 "coordinates": [
424 -2.2426,
425 53.4808
426 ]
427 }
428 },
429 {
430 "type": "Feature",
431 "properties": {
432 "layer": "stop",
433 "name": "Cardiff, GB",
434 "transit": false
435 },
436 "geometry": {
437 "type": "Point",
438 "coordinates": [
439 -3.1791,
440 51.4816
441 ]
442 }
443 },
444 {
445 "type": "Feature",
446 "properties": {
447 "layer": "stop",
448 "name": "CWL",
449 "transit": false
450 },
451 "geometry": {
452 "type": "Point",
453 "coordinates": [
454 -3.3433,
455 51.3967
456 ]
457 }
458 },
459 {
460 "type": "Feature",
461 "properties": {
462 "layer": "stop",
463 "name": "DUB",
464 "transit": false
465 },
466 "geometry": {
467 "type": "Point",
468 "coordinates": [
469 -6.2701,
470 53.4264
471 ]
472 }
473 }
474 ]
475}