Apr 18, 2026 4.7 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "MIA",
9 "to": "EZE",
10 "date": "2019-11-30",
11 "mode": "flight (AA931)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -80.2906,
18 25.7959
19 ],
20 [
21 -58.5356,
22 -34.8222
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Buenos Aires, AR",
32 "to": "El Palomar, AR",
33 "date": "2019-12-25",
34 "mode": "car, transit"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -58.3816,
41 -34.6037
42 ],
43 [
44 -58.6126,
45 -34.6099
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "flight",
54 "from": "EPA",
55 "to": "IGR",
56 "date": "2019-12-25",
57 "mode": "flight(FO5100)"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -58.6126,
64 -34.6099
65 ],
66 [
67 -54.4734,
68 -25.7373
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "flight",
77 "from": "IGR",
78 "to": "EPA",
79 "date": "2019-12-26",
80 "mode": "flight (WJ 3399), transit"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 -54.4734,
87 -25.7373
88 ],
89 [
90 -58.6126,
91 -34.6099
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "route",
100 "from": "El Palomar, AR",
101 "to": "Buenos Aires, AR",
102 "date": "2019-12-26",
103 "mode": "car"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 -58.6126,
110 -34.6099
111 ],
112 [
113 -58.3816,
114 -34.6037
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "flight",
123 "from": "EZE",
124 "to": "MIA",
125 "date": "2020-01-06",
126 "mode": "flight(AA900), transit"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 -58.5356,
133 -34.8222
134 ],
135 [
136 -80.2906,
137 25.7959
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "flight",
146 "from": "MIA",
147 "to": "SFO",
148 "date": "2020-01-07",
149 "mode": "flight (AA132)"
150 },
151 "geometry": {
152 "type": "LineString",
153 "coordinates": [
154 [
155 -80.2906,
156 25.7959
157 ],
158 [
159 -122.379,
160 37.6213
161 ]
162 ]
163 }
164 },
165 {
166 "type": "Feature",
167 "properties": {
168 "layer": "stop",
169 "name": "MIA"
170 },
171 "geometry": {
172 "type": "Point",
173 "coordinates": [
174 -80.2906,
175 25.7959
176 ]
177 }
178 },
179 {
180 "type": "Feature",
181 "properties": {
182 "layer": "stop",
183 "name": "EZE"
184 },
185 "geometry": {
186 "type": "Point",
187 "coordinates": [
188 -58.5356,
189 -34.8222
190 ]
191 }
192 },
193 {
194 "type": "Feature",
195 "properties": {
196 "layer": "stop",
197 "name": "Buenos Aires, AR"
198 },
199 "geometry": {
200 "type": "Point",
201 "coordinates": [
202 -58.3816,
203 -34.6037
204 ]
205 }
206 },
207 {
208 "type": "Feature",
209 "properties": {
210 "layer": "stop",
211 "name": "El Palomar, AR"
212 },
213 "geometry": {
214 "type": "Point",
215 "coordinates": [
216 -58.6126,
217 -34.6099
218 ]
219 }
220 },
221 {
222 "type": "Feature",
223 "properties": {
224 "layer": "stop",
225 "name": "EPA"
226 },
227 "geometry": {
228 "type": "Point",
229 "coordinates": [
230 -58.6126,
231 -34.6099
232 ]
233 }
234 },
235 {
236 "type": "Feature",
237 "properties": {
238 "layer": "stop",
239 "name": "IGR"
240 },
241 "geometry": {
242 "type": "Point",
243 "coordinates": [
244 -54.4734,
245 -25.7373
246 ]
247 }
248 },
249 {
250 "type": "Feature",
251 "properties": {
252 "layer": "stop",
253 "name": "SFO"
254 },
255 "geometry": {
256 "type": "Point",
257 "coordinates": [
258 -122.379,
259 37.6213
260 ]
261 }
262 }
263 ]
264}