Apr 18, 2026 5.2 KB
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "route",
8 "from": "San Francisco, US",
9 "to": "Santa Rosa, US",
10 "date": "2016-02-15",
11 "mode": "bike"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.4194,
18 37.7749
19 ],
20 [
21 -122.7141,
22 38.4405
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Santa Rosa, US",
32 "to": "Napa, US",
33 "date": "2016-02-16",
34 "mode": "bike"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -122.7141,
41 38.4405
42 ],
43 [
44 -122.2869,
45 38.2975
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Napa, US",
55 "to": "Sacramento, US",
56 "date": "2016-02-18",
57 "mode": "bike"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -122.2869,
64 38.2975
65 ],
66 [
67 -121.4944,
68 38.5816
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "route",
77 "from": "Sacramento, US",
78 "to": "Stockton, US",
79 "date": "2016-02-20",
80 "mode": "bike"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 -121.4944,
87 38.5816
88 ],
89 [
90 -121.2908,
91 37.9577
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "route",
100 "from": "Stockton, US",
101 "to": "Fremont, CA, US",
102 "date": "2016-02-21",
103 "mode": "bike, transit"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 -121.2908,
110 37.9577
111 ],
112 [
113 -121.9886,
114 37.5485
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "route",
123 "from": "Fremont, CA, US",
124 "to": "San Francisco, US",
125 "date": "2016-02-21",
126 "mode": "train"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 -121.9886,
133 37.5485
134 ],
135 [
136 -122.4194,
137 37.7749
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "stop",
146 "name": "San Francisco, US",
147 "transit": false,
148 "trips": [
149 {
150 "file": "solo-bike-trip-2016.md",
151 "title": "",
152 "date": "2016-02-15"
153 }
154 ]
155 },
156 "geometry": {
157 "type": "Point",
158 "coordinates": [
159 -122.4194,
160 37.7749
161 ]
162 }
163 },
164 {
165 "type": "Feature",
166 "properties": {
167 "layer": "stop",
168 "name": "Santa Rosa, US",
169 "transit": false,
170 "trips": [
171 {
172 "file": "solo-bike-trip-2016.md",
173 "title": "",
174 "date": "2016-02-15"
175 }
176 ]
177 },
178 "geometry": {
179 "type": "Point",
180 "coordinates": [
181 -122.7141,
182 38.4405
183 ]
184 }
185 },
186 {
187 "type": "Feature",
188 "properties": {
189 "layer": "stop",
190 "name": "Napa, US",
191 "transit": false,
192 "trips": [
193 {
194 "file": "solo-bike-trip-2016.md",
195 "title": "",
196 "date": "2016-02-16"
197 }
198 ]
199 },
200 "geometry": {
201 "type": "Point",
202 "coordinates": [
203 -122.2869,
204 38.2975
205 ]
206 }
207 },
208 {
209 "type": "Feature",
210 "properties": {
211 "layer": "stop",
212 "name": "Sacramento, US",
213 "transit": false,
214 "trips": [
215 {
216 "file": "solo-bike-trip-2016.md",
217 "title": "",
218 "date": "2016-02-18"
219 }
220 ]
221 },
222 "geometry": {
223 "type": "Point",
224 "coordinates": [
225 -121.4944,
226 38.5816
227 ]
228 }
229 },
230 {
231 "type": "Feature",
232 "properties": {
233 "layer": "stop",
234 "name": "Stockton, US",
235 "transit": false,
236 "trips": [
237 {
238 "file": "solo-bike-trip-2016.md",
239 "title": "",
240 "date": "2016-02-20"
241 }
242 ]
243 },
244 "geometry": {
245 "type": "Point",
246 "coordinates": [
247 -121.2908,
248 37.9577
249 ]
250 }
251 },
252 {
253 "type": "Feature",
254 "properties": {
255 "layer": "stop",
256 "name": "Fremont, CA, US",
257 "transit": false,
258 "trips": [
259 {
260 "file": "solo-bike-trip-2016.md",
261 "title": "",
262 "date": "2016-02-21"
263 }
264 ]
265 },
266 "geometry": {
267 "type": "Point",
268 "coordinates": [
269 -121.9886,
270 37.5485
271 ]
272 }
273 }
274 ]
275}