Apr 18, 2026 4.7 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "PTY",
9 "to": "JFK",
10 "date": "2013-09-27",
11 "mode": "flight(CM830)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -79.3835,
18 9.0714
19 ],
20 [
21 -73.7781,
22 40.6413
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "New York, US",
32 "to": "Washington, US",
33 "date": "2013-11-13",
34 "mode": "bus"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -74.006,
41 40.7128
42 ],
43 [
44 -77.0369,
45 38.9072
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Washington, US",
55 "to": "New York, US",
56 "date": "2013-11-17",
57 "mode": "bus"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -77.0369,
64 38.9072
65 ],
66 [
67 -74.006,
68 40.7128
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "flight",
77 "from": "JFK",
78 "to": "FRA",
79 "date": "2013-12-28",
80 "mode": "flight(LA1441), transit"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 -73.7781,
87 40.6413
88 ],
89 [
90 8.5622,
91 50.0333
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "flight",
100 "from": "FRA",
101 "to": "KBP",
102 "date": "2013-12-28",
103 "mode": "flight(LA1447), transit"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 8.5622,
110 50.0333
111 ],
112 [
113 30.8947,
114 50.345
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "route",
123 "from": "Kyiv, UA",
124 "to": "Kharkiv, UA",
125 "date": "2013-12-28",
126 "mode": "train"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 30.5234,
133 50.4501
134 ],
135 [
136 36.2304,
137 49.9935
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "stop",
146 "name": "PTY",
147 "transit": false
148 },
149 "geometry": {
150 "type": "Point",
151 "coordinates": [
152 -79.3835,
153 9.0714
154 ]
155 }
156 },
157 {
158 "type": "Feature",
159 "properties": {
160 "layer": "stop",
161 "name": "JFK",
162 "transit": false
163 },
164 "geometry": {
165 "type": "Point",
166 "coordinates": [
167 -73.7781,
168 40.6413
169 ]
170 }
171 },
172 {
173 "type": "Feature",
174 "properties": {
175 "layer": "stop",
176 "name": "New York, US",
177 "transit": false
178 },
179 "geometry": {
180 "type": "Point",
181 "coordinates": [
182 -74.006,
183 40.7128
184 ]
185 }
186 },
187 {
188 "type": "Feature",
189 "properties": {
190 "layer": "stop",
191 "name": "Washington, US",
192 "transit": false
193 },
194 "geometry": {
195 "type": "Point",
196 "coordinates": [
197 -77.0369,
198 38.9072
199 ]
200 }
201 },
202 {
203 "type": "Feature",
204 "properties": {
205 "layer": "stop",
206 "name": "FRA",
207 "transit": true
208 },
209 "geometry": {
210 "type": "Point",
211 "coordinates": [
212 8.5622,
213 50.0333
214 ]
215 }
216 },
217 {
218 "type": "Feature",
219 "properties": {
220 "layer": "stop",
221 "name": "KBP",
222 "transit": true
223 },
224 "geometry": {
225 "type": "Point",
226 "coordinates": [
227 30.8947,
228 50.345
229 ]
230 }
231 },
232 {
233 "type": "Feature",
234 "properties": {
235 "layer": "stop",
236 "name": "Kyiv, UA",
237 "transit": false
238 },
239 "geometry": {
240 "type": "Point",
241 "coordinates": [
242 30.5234,
243 50.4501
244 ]
245 }
246 },
247 {
248 "type": "Feature",
249 "properties": {
250 "layer": "stop",
251 "name": "Kharkiv, UA",
252 "transit": false
253 },
254 "geometry": {
255 "type": "Point",
256 "coordinates": [
257 36.2304,
258 49.9935
259 ]
260 }
261 }
262 ]
263}