Apr 18, 2026 1.4 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "SFO",
9 "to": "CPH",
10 "date": "2019-07-24",
11 "mode": "flight (SK936, A340-300)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.379,
18 37.6213
19 ],
20 [
21 12.6561,
22 55.6181
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "CPH",
32 "to": "SFO",
33 "date": "2019-07-29",
34 "mode": "flight (SK935, A340-300)"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 12.6561,
41 55.6181
42 ],
43 [
44 -122.379,
45 37.6213
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "stop",
54 "name": "SFO",
55 "transit": false
56 },
57 "geometry": {
58 "type": "Point",
59 "coordinates": [
60 -122.379,
61 37.6213
62 ]
63 }
64 },
65 {
66 "type": "Feature",
67 "properties": {
68 "layer": "stop",
69 "name": "CPH",
70 "transit": false
71 },
72 "geometry": {
73 "type": "Point",
74 "coordinates": [
75 12.6561,
76 55.6181
77 ]
78 }
79 }
80 ]
81}