Apr 18, 2026 2.1 KB
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "WAW",
9 "to": "MIA",
10 "date": "2023-11-04",
11 "mode": "flight"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 20.9671,
18 52.1657
19 ],
20 [
21 -80.2906,
22 25.7959
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "MIA",
32 "to": "EWR",
33 "date": "2023-11-15",
34 "mode": "flight (United, H6S0BR)"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -80.2906,
41 25.7959
42 ],
43 [
44 -74.1687,
45 40.6895
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "stop",
54 "name": "WAW",
55 "transit": false,
56 "trips": [
57 {
58 "file": "miami-november-2023.md",
59 "title": "",
60 "date": "2023-11-04"
61 }
62 ]
63 },
64 "geometry": {
65 "type": "Point",
66 "coordinates": [
67 20.9671,
68 52.1657
69 ]
70 }
71 },
72 {
73 "type": "Feature",
74 "properties": {
75 "layer": "stop",
76 "name": "MIA",
77 "transit": false,
78 "trips": [
79 {
80 "file": "miami-november-2023.md",
81 "title": "",
82 "date": "2023-11-04"
83 }
84 ]
85 },
86 "geometry": {
87 "type": "Point",
88 "coordinates": [
89 -80.2906,
90 25.7959
91 ]
92 }
93 },
94 {
95 "type": "Feature",
96 "properties": {
97 "layer": "stop",
98 "name": "EWR",
99 "transit": false,
100 "trips": [
101 {
102 "file": "miami-november-2023.md",
103 "title": "",
104 "date": "2023-11-15"
105 }
106 ]
107 },
108 "geometry": {
109 "type": "Point",
110 "coordinates": [
111 -74.1687,
112 40.6895
113 ]
114 }
115 }
116 ]
117}