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