Apr 18, 2026 1008 B of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "WAW",
9 "to": "MIA",
10 "date": "2024-02-25",
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": "stop",
31 "name": "WAW",
32 "transit": false
33 },
34 "geometry": {
35 "type": "Point",
36 "coordinates": [
37 20.9671,
38 52.1657
39 ]
40 }
41 },
42 {
43 "type": "Feature",
44 "properties": {
45 "layer": "stop",
46 "name": "MIA",
47 "transit": false
48 },
49 "geometry": {
50 "type": "Point",
51 "coordinates": [
52 -80.2906,
53 25.7959
54 ]
55 }
56 }
57 ]
58}