Apr 18, 2026 2.8 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "OAK",
9 "to": "SLC",
10 "date": "2015-03-07",
11 "mode": "flight (DL1082)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.2208,
18 37.7213
19 ],
20 [
21 -111.9791,
22 40.7884
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Salt Lake City, US",
32 "to": "Provo, US",
33 "date": "2015-03-07",
34 "mode": "train"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -111.891,
41 40.7608
42 ],
43 [
44 -111.6585,
45 40.2338
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Provo, US",
55 "to": "Salt Lake City, US",
56 "date": "2015-03-15",
57 "mode": "train, transit"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -111.6585,
64 40.2338
65 ],
66 [
67 -111.891,
68 40.7608
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "flight",
77 "from": "SLC",
78 "to": "OAK",
79 "date": "2015-03-15",
80 "mode": "flight (DL1082)"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 -111.9791,
87 40.7884
88 ],
89 [
90 -122.2208,
91 37.7213
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "stop",
100 "name": "OAK",
101 "transit": false
102 },
103 "geometry": {
104 "type": "Point",
105 "coordinates": [
106 -122.2208,
107 37.7213
108 ]
109 }
110 },
111 {
112 "type": "Feature",
113 "properties": {
114 "layer": "stop",
115 "name": "SLC",
116 "transit": false
117 },
118 "geometry": {
119 "type": "Point",
120 "coordinates": [
121 -111.9791,
122 40.7884
123 ]
124 }
125 },
126 {
127 "type": "Feature",
128 "properties": {
129 "layer": "stop",
130 "name": "Salt Lake City, US",
131 "transit": false
132 },
133 "geometry": {
134 "type": "Point",
135 "coordinates": [
136 -111.891,
137 40.7608
138 ]
139 }
140 },
141 {
142 "type": "Feature",
143 "properties": {
144 "layer": "stop",
145 "name": "Provo, US",
146 "transit": false
147 },
148 "geometry": {
149 "type": "Point",
150 "coordinates": [
151 -111.6585,
152 40.2338
153 ]
154 }
155 }
156 ]
157}