Apr 18, 2026 1.8 KB
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "route",
8 "from": "San Francisco, US",
9 "to": "Los Angeles, US",
10 "date": "2015-05-22",
11 "mode": "bus"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.4194,
18 37.7749
19 ],
20 [
21 -118.2437,
22 34.0522
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Los Angeles, US",
32 "to": "San Francisco, US",
33 "date": "2015-05-25",
34 "mode": "bus"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -118.2437,
41 34.0522
42 ],
43 [
44 -122.4194,
45 37.7749
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "stop",
54 "name": "San Francisco, US",
55 "transit": false,
56 "trips": [
57 {
58 "file": "la-second-trip-2015.md",
59 "title": "",
60 "date": "2015-05-22"
61 }
62 ]
63 },
64 "geometry": {
65 "type": "Point",
66 "coordinates": [
67 -122.4194,
68 37.7749
69 ]
70 }
71 },
72 {
73 "type": "Feature",
74 "properties": {
75 "layer": "stop",
76 "name": "Los Angeles, US",
77 "transit": false,
78 "trips": [
79 {
80 "file": "la-second-trip-2015.md",
81 "title": "",
82 "date": "2015-05-22"
83 }
84 ]
85 },
86 "geometry": {
87 "type": "Point",
88 "coordinates": [
89 -118.2437,
90 34.0522
91 ]
92 }
93 }
94 ]
95}