1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "SFO",
9 "to": "SAN",
10 "date": "2018-02-02",
11 "mode": "flight (AS1956, A318/321), transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.379,
18 37.6213
19 ],
20 [
21 -117.1896,
22 32.7336
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "San Diego, US",
32 "to": "Tijuana, MX",
33 "date": "2018-02-02",
34 "mode": "train"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -117.1611,
41 32.7157
42 ],
43 [
44 -117.0382,
45 32.5149
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Tijuana, MX",
55 "to": "San Diego, US",
56 "date": "2018-02-04",
57 "mode": "train"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -117.0382,
64 32.5149
65 ],
66 [
67 -117.1611,
68 32.7157
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "flight",
77 "from": "SAN",
78 "to": "SFO",
79 "date": "2018-02-10",
80 "mode": "flight (VX1979, A320)"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 -117.1896,
87 32.7336
88 ],
89 [
90 -122.379,
91 37.6213
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "stop",
100 "name": "SFO"
101 },
102 "geometry": {
103 "type": "Point",
104 "coordinates": [
105 -122.379,
106 37.6213
107 ]
108 }
109 },
110 {
111 "type": "Feature",
112 "properties": {
113 "layer": "stop",
114 "name": "SAN"
115 },
116 "geometry": {
117 "type": "Point",
118 "coordinates": [
119 -117.1896,
120 32.7336
121 ]
122 }
123 },
124 {
125 "type": "Feature",
126 "properties": {
127 "layer": "stop",
128 "name": "San Diego, US"
129 },
130 "geometry": {
131 "type": "Point",
132 "coordinates": [
133 -117.1611,
134 32.7157
135 ]
136 }
137 },
138 {
139 "type": "Feature",
140 "properties": {
141 "layer": "stop",
142 "name": "Tijuana, MX"
143 },
144 "geometry": {
145 "type": "Point",
146 "coordinates": [
147 -117.0382,
148 32.5149
149 ]
150 }
151 }
152 ]
153}