Apr 18, 2026 6.9 KB
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "SFO",
9 "to": "EWR",
10 "date": "2018-11-15",
11 "mode": "flight (UA535, 757-200), transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.379,
18 37.6213
19 ],
20 [
21 -74.1687,
22 40.6895
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Newark, NJ, US",
32 "to": "New York, US",
33 "date": "2018-11-15",
34 "mode": "car"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -74.1724,
41 40.7357
42 ],
43 [
44 -74.006,
45 40.7128
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "New York, US",
55 "to": "Newark, NJ, US",
56 "date": "2018-11-17",
57 "mode": "car, transit"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -74.006,
64 40.7128
65 ],
66 [
67 -74.1724,
68 40.7357
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "flight",
77 "from": "EWR",
78 "to": "EZE",
79 "date": "2018-11-17",
80 "mode": "flight (UA979, 767-400)"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 -74.1687,
87 40.6895
88 ],
89 [
90 -58.5356,
91 -34.8222
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "flight",
100 "from": "EZE",
101 "to": "MAD",
102 "date": "2018-12-23",
103 "mode": "flight (IB6856, A340-600), transit"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 -58.5356,
110 -34.8222
111 ],
112 [
113 -3.5673,
114 40.4936
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "flight",
123 "from": "MAD",
124 "to": "ORY",
125 "date": "2018-12-24",
126 "mode": "flight (IB3436, A320 SHARKLETS)"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 -3.5673,
133 40.4936
134 ],
135 [
136 2.3594,
137 48.7233
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "flight",
146 "from": "CDG",
147 "to": "OAK",
148 "date": "2019-01-05",
149 "mode": "flight (DY7079, 787-9)"
150 },
151 "geometry": {
152 "type": "LineString",
153 "coordinates": [
154 [
155 2.5479,
156 49.0097
157 ],
158 [
159 -122.2208,
160 37.7213
161 ]
162 ]
163 }
164 },
165 {
166 "type": "Feature",
167 "properties": {
168 "layer": "stop",
169 "name": "SFO",
170 "transit": true,
171 "trips": [
172 {
173 "file": "buenos-aires-and-paris.md",
174 "title": "",
175 "date": "2018-11-15"
176 }
177 ]
178 },
179 "geometry": {
180 "type": "Point",
181 "coordinates": [
182 -122.379,
183 37.6213
184 ]
185 }
186 },
187 {
188 "type": "Feature",
189 "properties": {
190 "layer": "stop",
191 "name": "EWR",
192 "transit": false,
193 "trips": [
194 {
195 "file": "buenos-aires-and-paris.md",
196 "title": "",
197 "date": "2018-11-15"
198 }
199 ]
200 },
201 "geometry": {
202 "type": "Point",
203 "coordinates": [
204 -74.1687,
205 40.6895
206 ]
207 }
208 },
209 {
210 "type": "Feature",
211 "properties": {
212 "layer": "stop",
213 "name": "Newark, NJ, US",
214 "transit": false,
215 "trips": [
216 {
217 "file": "buenos-aires-and-paris.md",
218 "title": "",
219 "date": "2018-11-15"
220 }
221 ]
222 },
223 "geometry": {
224 "type": "Point",
225 "coordinates": [
226 -74.1724,
227 40.7357
228 ]
229 }
230 },
231 {
232 "type": "Feature",
233 "properties": {
234 "layer": "stop",
235 "name": "New York, US",
236 "transit": false,
237 "trips": [
238 {
239 "file": "buenos-aires-and-paris.md",
240 "title": "",
241 "date": "2018-11-15"
242 }
243 ]
244 },
245 "geometry": {
246 "type": "Point",
247 "coordinates": [
248 -74.006,
249 40.7128
250 ]
251 }
252 },
253 {
254 "type": "Feature",
255 "properties": {
256 "layer": "stop",
257 "name": "EZE",
258 "transit": false,
259 "trips": [
260 {
261 "file": "buenos-aires-and-paris.md",
262 "title": "",
263 "date": "2018-11-17"
264 }
265 ]
266 },
267 "geometry": {
268 "type": "Point",
269 "coordinates": [
270 -58.5356,
271 -34.8222
272 ]
273 }
274 },
275 {
276 "type": "Feature",
277 "properties": {
278 "layer": "stop",
279 "name": "MAD",
280 "transit": false,
281 "trips": [
282 {
283 "file": "buenos-aires-and-paris.md",
284 "title": "",
285 "date": "2018-12-23"
286 }
287 ]
288 },
289 "geometry": {
290 "type": "Point",
291 "coordinates": [
292 -3.5673,
293 40.4936
294 ]
295 }
296 },
297 {
298 "type": "Feature",
299 "properties": {
300 "layer": "stop",
301 "name": "ORY",
302 "transit": false,
303 "trips": [
304 {
305 "file": "buenos-aires-and-paris.md",
306 "title": "",
307 "date": "2018-12-24"
308 }
309 ]
310 },
311 "geometry": {
312 "type": "Point",
313 "coordinates": [
314 2.3594,
315 48.7233
316 ]
317 }
318 },
319 {
320 "type": "Feature",
321 "properties": {
322 "layer": "stop",
323 "name": "CDG",
324 "transit": false,
325 "trips": [
326 {
327 "file": "buenos-aires-and-paris.md",
328 "title": "",
329 "date": "2019-01-05"
330 }
331 ]
332 },
333 "geometry": {
334 "type": "Point",
335 "coordinates": [
336 2.5479,
337 49.0097
338 ]
339 }
340 },
341 {
342 "type": "Feature",
343 "properties": {
344 "layer": "stop",
345 "name": "OAK",
346 "transit": false,
347 "trips": [
348 {
349 "file": "buenos-aires-and-paris.md",
350 "title": "",
351 "date": "2019-01-05"
352 }
353 ]
354 },
355 "geometry": {
356 "type": "Point",
357 "coordinates": [
358 -122.2208,
359 37.7213
360 ]
361 }
362 }
363 ]
364}