Apr 18, 2026 4.3 KB of v3
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 },
149 "geometry": {
150 "type": "Point",
151 "coordinates": [
152 -122.4194,
153 37.7749
154 ]
155 }
156 },
157 {
158 "type": "Feature",
159 "properties": {
160 "layer": "stop",
161 "name": "Santa Rosa, US",
162 "transit": false
163 },
164 "geometry": {
165 "type": "Point",
166 "coordinates": [
167 -122.7141,
168 38.4405
169 ]
170 }
171 },
172 {
173 "type": "Feature",
174 "properties": {
175 "layer": "stop",
176 "name": "Napa, US",
177 "transit": false
178 },
179 "geometry": {
180 "type": "Point",
181 "coordinates": [
182 -122.2869,
183 38.2975
184 ]
185 }
186 },
187 {
188 "type": "Feature",
189 "properties": {
190 "layer": "stop",
191 "name": "Sacramento, US",
192 "transit": false
193 },
194 "geometry": {
195 "type": "Point",
196 "coordinates": [
197 -121.4944,
198 38.5816
199 ]
200 }
201 },
202 {
203 "type": "Feature",
204 "properties": {
205 "layer": "stop",
206 "name": "Stockton, US",
207 "transit": false
208 },
209 "geometry": {
210 "type": "Point",
211 "coordinates": [
212 -121.2908,
213 37.9577
214 ]
215 }
216 },
217 {
218 "type": "Feature",
219 "properties": {
220 "layer": "stop",
221 "name": "Fremont, CA, US",
222 "transit": false
223 },
224 "geometry": {
225 "type": "Point",
226 "coordinates": [
227 -121.9886,
228 37.5485
229 ]
230 }
231 }
232 ]
233}