1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "SFO",
9 "to": "EWR",
10 "date": "2020-09-26",
11 "mode": "flight(UA569), transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.379,
18 37.6213
19 ],
20 [
21 -74.1687,
22 40.6895
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Newark, NJ, US",
32 "to": "New York, US",
33 "date": "2020-09-26",
34 "mode": "car"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -74.1724,
41 40.7357
42 ],
43 [
44 -74.006,
45 40.7128
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "stop",
54 "name": "SFO",
55 "transit": true
56 },
57 "geometry": {
58 "type": "Point",
59 "coordinates": [
60 -122.379,
61 37.6213
62 ]
63 }
64 },
65 {
66 "type": "Feature",
67 "properties": {
68 "layer": "stop",
69 "name": "EWR",
70 "transit": true
71 },
72 "geometry": {
73 "type": "Point",
74 "coordinates": [
75 -74.1687,
76 40.6895
77 ]
78 }
79 },
80 {
81 "type": "Feature",
82 "properties": {
83 "layer": "stop",
84 "name": "Newark, NJ, US",
85 "transit": false
86 },
87 "geometry": {
88 "type": "Point",
89 "coordinates": [
90 -74.1724,
91 40.7357
92 ]
93 }
94 },
95 {
96 "type": "Feature",
97 "properties": {
98 "layer": "stop",
99 "name": "New York, US",
100 "transit": false
101 },
102 "geometry": {
103 "type": "Point",
104 "coordinates": [
105 -74.006,
106 40.7128
107 ]
108 }
109 }
110 ]
111}