Apr 18, 2026 2.9 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": "Larkspur, CA, US",
10 "date": "2016-07-08",
11 "mode": "Boat, transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.4194,
18 37.7749
19 ],
20 [
21 -122.5352,
22 37.9341
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Larkspur, CA, US",
32 "to": "Napa, US",
33 "date": "2016-07-08",
34 "mode": "bike"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -122.5352,
41 37.9341
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": "Vallejo, CA, US",
56 "date": "2016-07-10",
57 "mode": "bike, transit"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -122.2869,
64 38.2975
65 ],
66 [
67 -122.2566,
68 38.1041
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "route",
77 "from": "Vallejo, CA, US",
78 "to": "San Francisco, US",
79 "date": "2016-07-10",
80 "mode": "boat"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 -122.2566,
87 38.1041
88 ],
89 [
90 -122.4194,
91 37.7749
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "stop",
100 "name": "San Francisco, US",
101 "transit": false
102 },
103 "geometry": {
104 "type": "Point",
105 "coordinates": [
106 -122.4194,
107 37.7749
108 ]
109 }
110 },
111 {
112 "type": "Feature",
113 "properties": {
114 "layer": "stop",
115 "name": "Larkspur, CA, US",
116 "transit": false
117 },
118 "geometry": {
119 "type": "Point",
120 "coordinates": [
121 -122.5352,
122 37.9341
123 ]
124 }
125 },
126 {
127 "type": "Feature",
128 "properties": {
129 "layer": "stop",
130 "name": "Napa, US",
131 "transit": false
132 },
133 "geometry": {
134 "type": "Point",
135 "coordinates": [
136 -122.2869,
137 38.2975
138 ]
139 }
140 },
141 {
142 "type": "Feature",
143 "properties": {
144 "layer": "stop",
145 "name": "Vallejo, CA, US",
146 "transit": false
147 },
148 "geometry": {
149 "type": "Point",
150 "coordinates": [
151 -122.2566,
152 38.1041
153 ]
154 }
155 }
156 ]
157}