Apr 18, 2026 3.4 KB
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "JFK",
9 "to": "SAN",
10 "date": "2022-09-07",
11 "mode": "flight (AS 178)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -73.7781,
18 40.6413
19 ],
20 [
21 -117.1896,
22 32.7336
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "SAN",
32 "to": "EWR",
33 "date": "2022-09-14",
34 "mode": "flight(AS 772), transit"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -117.1896,
41 32.7336
42 ],
43 [
44 -74.1687,
45 40.6895
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Newark, NJ, US",
55 "to": "New York, US",
56 "date": "2022-09-14",
57 "mode": "car"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -74.1724,
64 40.7357
65 ],
66 [
67 -74.006,
68 40.7128
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "stop",
77 "name": "JFK",
78 "transit": false,
79 "trips": [
80 {
81 "file": "san-diego-2022.md",
82 "title": "",
83 "date": "2022-09-07"
84 }
85 ]
86 },
87 "geometry": {
88 "type": "Point",
89 "coordinates": [
90 -73.7781,
91 40.6413
92 ]
93 }
94 },
95 {
96 "type": "Feature",
97 "properties": {
98 "layer": "stop",
99 "name": "SAN",
100 "transit": false,
101 "trips": [
102 {
103 "file": "san-diego-2022.md",
104 "title": "",
105 "date": "2022-09-07"
106 }
107 ]
108 },
109 "geometry": {
110 "type": "Point",
111 "coordinates": [
112 -117.1896,
113 32.7336
114 ]
115 }
116 },
117 {
118 "type": "Feature",
119 "properties": {
120 "layer": "stop",
121 "name": "EWR",
122 "transit": true,
123 "trips": [
124 {
125 "file": "san-diego-2022.md",
126 "title": "",
127 "date": "2022-09-14"
128 }
129 ]
130 },
131 "geometry": {
132 "type": "Point",
133 "coordinates": [
134 -74.1687,
135 40.6895
136 ]
137 }
138 },
139 {
140 "type": "Feature",
141 "properties": {
142 "layer": "stop",
143 "name": "Newark, NJ, US",
144 "transit": false,
145 "trips": [
146 {
147 "file": "san-diego-2022.md",
148 "title": "",
149 "date": "2022-09-14"
150 }
151 ]
152 },
153 "geometry": {
154 "type": "Point",
155 "coordinates": [
156 -74.1724,
157 40.7357
158 ]
159 }
160 },
161 {
162 "type": "Feature",
163 "properties": {
164 "layer": "stop",
165 "name": "New York, US",
166 "transit": false,
167 "trips": [
168 {
169 "file": "san-diego-2022.md",
170 "title": "",
171 "date": "2022-09-14"
172 }
173 ]
174 },
175 "geometry": {
176 "type": "Point",
177 "coordinates": [
178 -74.006,
179 40.7128
180 ]
181 }
182 }
183 ]
184}