1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "EWR",
9 "to": "CUN",
10 "date": "2022-01-30",
11 "mode": "flight (UA 1052), transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -74.1687,
18 40.6895
19 ],
20 [
21 -86.877,
22 21.0365
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Cancun, MX",
32 "to": "Playa del Carmen, MX",
33 "date": "2022-01-30",
34 "mode": "bus"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -86.8515,
41 21.1619
42 ],
43 [
44 -87.0739,
45 20.6296
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Playa del Carmen, MX",
55 "to": "Cancun, MX",
56 "date": "2022-01-02",
57 "mode": "bus, transit"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -87.0739,
64 20.6296
65 ],
66 [
67 -86.8515,
68 21.1619
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "flight",
77 "from": "CUN",
78 "to": "EWR",
79 "date": "2022-02-16",
80 "mode": "flight(UA 1051), transit"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 -86.877,
87 21.0365
88 ],
89 [
90 -74.1687,
91 40.6895
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "route",
100 "from": "Newark, NJ, US",
101 "to": "New York, US",
102 "date": "2022-02-16",
103 "mode": "car"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 -74.1724,
110 40.7357
111 ],
112 [
113 -74.006,
114 40.7128
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "stop",
123 "name": "EWR",
124 "transit": true
125 },
126 "geometry": {
127 "type": "Point",
128 "coordinates": [
129 -74.1687,
130 40.6895
131 ]
132 }
133 },
134 {
135 "type": "Feature",
136 "properties": {
137 "layer": "stop",
138 "name": "CUN",
139 "transit": true
140 },
141 "geometry": {
142 "type": "Point",
143 "coordinates": [
144 -86.877,
145 21.0365
146 ]
147 }
148 },
149 {
150 "type": "Feature",
151 "properties": {
152 "layer": "stop",
153 "name": "Cancun, MX",
154 "transit": false
155 },
156 "geometry": {
157 "type": "Point",
158 "coordinates": [
159 -86.8515,
160 21.1619
161 ]
162 }
163 },
164 {
165 "type": "Feature",
166 "properties": {
167 "layer": "stop",
168 "name": "Playa del Carmen, MX",
169 "transit": false
170 },
171 "geometry": {
172 "type": "Point",
173 "coordinates": [
174 -87.0739,
175 20.6296
176 ]
177 }
178 },
179 {
180 "type": "Feature",
181 "properties": {
182 "layer": "stop",
183 "name": "Newark, NJ, US",
184 "transit": false
185 },
186 "geometry": {
187 "type": "Point",
188 "coordinates": [
189 -74.1724,
190 40.7357
191 ]
192 }
193 },
194 {
195 "type": "Feature",
196 "properties": {
197 "layer": "stop",
198 "name": "New York, US",
199 "transit": false
200 },
201 "geometry": {
202 "type": "Point",
203 "coordinates": [
204 -74.006,
205 40.7128
206 ]
207 }
208 }
209 ]
210}