1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "MIA",
9 "to": "LHR",
10 "date": "2025-08-09",
11 "mode": "flight"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -80.2906,
18 25.7959
19 ],
20 [
21 -0.4614,
22 51.47
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "LHR",
32 "to": "WAW",
33 "date": "2025-08-18",
34 "mode": "flight (LOT, Z7R3W9)"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -0.4614,
41 51.47
42 ],
43 [
44 20.9671,
45 52.1657
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "stop",
54 "name": "MIA",
55 "transit": false
56 },
57 "geometry": {
58 "type": "Point",
59 "coordinates": [
60 -80.2906,
61 25.7959
62 ]
63 }
64 },
65 {
66 "type": "Feature",
67 "properties": {
68 "layer": "stop",
69 "name": "LHR",
70 "transit": false
71 },
72 "geometry": {
73 "type": "Point",
74 "coordinates": [
75 -0.4614,
76 51.47
77 ]
78 }
79 },
80 {
81 "type": "Feature",
82 "properties": {
83 "layer": "stop",
84 "name": "WAW",
85 "transit": false
86 },
87 "geometry": {
88 "type": "Point",
89 "coordinates": [
90 20.9671,
91 52.1657
92 ]
93 }
94 }
95 ]
96}