Apr 18, 2026 2.7 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "EWR",
9 "to": "GRU",
10 "date": "2021-11-21",
11 "mode": "flight (UA 149), transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -74.1687,
18 40.6895
19 ],
20 [
21 -46.473,
22 -23.4356
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "CGH",
32 "to": "SDU",
33 "date": "2021-11-22",
34 "mode": "flight"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -46.6564,
41 -23.6261
42 ],
43 [
44 -43.1631,
45 -22.9105
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "flight",
54 "from": "GIG",
55 "to": "BOG",
56 "date": "2021-12-13",
57 "mode": "flight(AV 260), transit"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -43.2436,
64 -22.8099
65 ],
66 [
67 -74.1469,
68 4.7016
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "stop",
77 "name": "EWR"
78 },
79 "geometry": {
80 "type": "Point",
81 "coordinates": [
82 -74.1687,
83 40.6895
84 ]
85 }
86 },
87 {
88 "type": "Feature",
89 "properties": {
90 "layer": "stop",
91 "name": "GRU"
92 },
93 "geometry": {
94 "type": "Point",
95 "coordinates": [
96 -46.473,
97 -23.4356
98 ]
99 }
100 },
101 {
102 "type": "Feature",
103 "properties": {
104 "layer": "stop",
105 "name": "CGH"
106 },
107 "geometry": {
108 "type": "Point",
109 "coordinates": [
110 -46.6564,
111 -23.6261
112 ]
113 }
114 },
115 {
116 "type": "Feature",
117 "properties": {
118 "layer": "stop",
119 "name": "SDU"
120 },
121 "geometry": {
122 "type": "Point",
123 "coordinates": [
124 -43.1631,
125 -22.9105
126 ]
127 }
128 },
129 {
130 "type": "Feature",
131 "properties": {
132 "layer": "stop",
133 "name": "GIG"
134 },
135 "geometry": {
136 "type": "Point",
137 "coordinates": [
138 -43.2436,
139 -22.8099
140 ]
141 }
142 },
143 {
144 "type": "Feature",
145 "properties": {
146 "layer": "stop",
147 "name": "BOG"
148 },
149 "geometry": {
150 "type": "Point",
151 "coordinates": [
152 -74.1469,
153 4.7016
154 ]
155 }
156 }
157 ]
158}