Apr 18, 2026 3.7 KB of v3
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 },
125 "geometry": {
126 "type": "Point",
127 "coordinates": [
128 -74.1687,
129 40.6895
130 ]
131 }
132 },
133 {
134 "type": "Feature",
135 "properties": {
136 "layer": "stop",
137 "name": "CUN"
138 },
139 "geometry": {
140 "type": "Point",
141 "coordinates": [
142 -86.877,
143 21.0365
144 ]
145 }
146 },
147 {
148 "type": "Feature",
149 "properties": {
150 "layer": "stop",
151 "name": "Cancun, MX"
152 },
153 "geometry": {
154 "type": "Point",
155 "coordinates": [
156 -86.8515,
157 21.1619
158 ]
159 }
160 },
161 {
162 "type": "Feature",
163 "properties": {
164 "layer": "stop",
165 "name": "Playa del Carmen, MX"
166 },
167 "geometry": {
168 "type": "Point",
169 "coordinates": [
170 -87.0739,
171 20.6296
172 ]
173 }
174 },
175 {
176 "type": "Feature",
177 "properties": {
178 "layer": "stop",
179 "name": "Newark, NJ, US"
180 },
181 "geometry": {
182 "type": "Point",
183 "coordinates": [
184 -74.1724,
185 40.7357
186 ]
187 }
188 },
189 {
190 "type": "Feature",
191 "properties": {
192 "layer": "stop",
193 "name": "New York, US"
194 },
195 "geometry": {
196 "type": "Point",
197 "coordinates": [
198 -74.006,
199 40.7128
200 ]
201 }
202 }
203 ]
204}