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