Apr 18, 2026 1.7 KB 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": "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 },
57 "geometry": {
58 "type": "Point",
59 "coordinates": [
60 20.9671,
61 52.1657
62 ]
63 }
64 },
65 {
66 "type": "Feature",
67 "properties": {
68 "layer": "stop",
69 "name": "MIA",
70 "transit": false
71 },
72 "geometry": {
73 "type": "Point",
74 "coordinates": [
75 -80.2906,
76 25.7959
77 ]
78 }
79 },
80 {
81 "type": "Feature",
82 "properties": {
83 "layer": "stop",
84 "name": "EWR",
85 "transit": false
86 },
87 "geometry": {
88 "type": "Point",
89 "coordinates": [
90 -74.1687,
91 40.6895
92 ]
93 }
94 }
95 ]
96}