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