1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "EWR",
9 "to": "SAN",
10 "date": "2021-09-30",
11 "mode": "flight (UA1604)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -74.1687,
18 40.6895
19 ],
20 [
21 -117.1896,
22 32.7336
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "San Diego, US",
32 "to": "Encinitas, US",
33 "date": "2021-10-04",
34 "mode": "car"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -117.1611,
41 32.7157
42 ],
43 [
44 -117.2928,
45 33.037
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Encinitas, US",
55 "to": "San Clemente, US",
56 "date": "2021-10-08",
57 "mode": "car"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -117.2928,
64 33.037
65 ],
66 [
67 -117.612,
68 33.427
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "route",
77 "from": "San Clemente, US",
78 "to": "Agoura Hills, US",
79 "date": "2021-10-09",
80 "mode": "car"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 -117.612,
87 33.427
88 ],
89 [
90 -118.7609,
91 34.1531
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "route",
100 "from": "Agoura Hills, US",
101 "to": "San Luis Obispo, US",
102 "date": "2021-10-11",
103 "mode": "car"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 -118.7609,
110 34.1531
111 ],
112 [
113 -120.6596,
114 35.2828
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "route",
123 "from": "San Luis Obispo, US",
124 "to": "Carmel-by-the-Sea, US",
125 "date": "2021-10-12",
126 "mode": "car"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 -120.6596,
133 35.2828
134 ],
135 [
136 -121.9233,
137 36.5552
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "route",
146 "from": "Carmel-by-the-Sea, US",
147 "to": "San Francisco, US",
148 "date": "2021-10-14",
149 "mode": "car"
150 },
151 "geometry": {
152 "type": "LineString",
153 "coordinates": [
154 [
155 -121.9233,
156 36.5552
157 ],
158 [
159 -122.4194,
160 37.7749
161 ]
162 ]
163 }
164 },
165 {
166 "type": "Feature",
167 "properties": {
168 "layer": "flight",
169 "from": "SFO",
170 "to": "EWR",
171 "date": "2021-10-19",
172 "mode": "flight(UA1796), transit"
173 },
174 "geometry": {
175 "type": "LineString",
176 "coordinates": [
177 [
178 -122.379,
179 37.6213
180 ],
181 [
182 -74.1687,
183 40.6895
184 ]
185 ]
186 }
187 },
188 {
189 "type": "Feature",
190 "properties": {
191 "layer": "route",
192 "from": "Newark, NJ, US",
193 "to": "New York, US",
194 "date": "2021-10-19",
195 "mode": "car"
196 },
197 "geometry": {
198 "type": "LineString",
199 "coordinates": [
200 [
201 -74.1724,
202 40.7357
203 ],
204 [
205 -74.006,
206 40.7128
207 ]
208 ]
209 }
210 },
211 {
212 "type": "Feature",
213 "properties": {
214 "layer": "stop",
215 "name": "EWR"
216 },
217 "geometry": {
218 "type": "Point",
219 "coordinates": [
220 -74.1687,
221 40.6895
222 ]
223 }
224 },
225 {
226 "type": "Feature",
227 "properties": {
228 "layer": "stop",
229 "name": "SAN"
230 },
231 "geometry": {
232 "type": "Point",
233 "coordinates": [
234 -117.1896,
235 32.7336
236 ]
237 }
238 },
239 {
240 "type": "Feature",
241 "properties": {
242 "layer": "stop",
243 "name": "San Diego, US"
244 },
245 "geometry": {
246 "type": "Point",
247 "coordinates": [
248 -117.1611,
249 32.7157
250 ]
251 }
252 },
253 {
254 "type": "Feature",
255 "properties": {
256 "layer": "stop",
257 "name": "Encinitas, US"
258 },
259 "geometry": {
260 "type": "Point",
261 "coordinates": [
262 -117.2928,
263 33.037
264 ]
265 }
266 },
267 {
268 "type": "Feature",
269 "properties": {
270 "layer": "stop",
271 "name": "San Clemente, US"
272 },
273 "geometry": {
274 "type": "Point",
275 "coordinates": [
276 -117.612,
277 33.427
278 ]
279 }
280 },
281 {
282 "type": "Feature",
283 "properties": {
284 "layer": "stop",
285 "name": "Agoura Hills, US"
286 },
287 "geometry": {
288 "type": "Point",
289 "coordinates": [
290 -118.7609,
291 34.1531
292 ]
293 }
294 },
295 {
296 "type": "Feature",
297 "properties": {
298 "layer": "stop",
299 "name": "San Luis Obispo, US"
300 },
301 "geometry": {
302 "type": "Point",
303 "coordinates": [
304 -120.6596,
305 35.2828
306 ]
307 }
308 },
309 {
310 "type": "Feature",
311 "properties": {
312 "layer": "stop",
313 "name": "Carmel-by-the-Sea, US"
314 },
315 "geometry": {
316 "type": "Point",
317 "coordinates": [
318 -121.9233,
319 36.5552
320 ]
321 }
322 },
323 {
324 "type": "Feature",
325 "properties": {
326 "layer": "stop",
327 "name": "San Francisco, US"
328 },
329 "geometry": {
330 "type": "Point",
331 "coordinates": [
332 -122.4194,
333 37.7749
334 ]
335 }
336 },
337 {
338 "type": "Feature",
339 "properties": {
340 "layer": "stop",
341 "name": "SFO"
342 },
343 "geometry": {
344 "type": "Point",
345 "coordinates": [
346 -122.379,
347 37.6213
348 ]
349 }
350 },
351 {
352 "type": "Feature",
353 "properties": {
354 "layer": "stop",
355 "name": "Newark, NJ, US"
356 },
357 "geometry": {
358 "type": "Point",
359 "coordinates": [
360 -74.1724,
361 40.7357
362 ]
363 }
364 },
365 {
366 "type": "Feature",
367 "properties": {
368 "layer": "stop",
369 "name": "New York, US"
370 },
371 "geometry": {
372 "type": "Point",
373 "coordinates": [
374 -74.006,
375 40.7128
376 ]
377 }
378 }
379 ]
380}