Apr 18, 2026 4.5 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 },
148 "geometry": {
149 "type": "Point",
150 "coordinates": [
151 -79.3835,
152 9.0714
153 ]
154 }
155 },
156 {
157 "type": "Feature",
158 "properties": {
159 "layer": "stop",
160 "name": "JFK"
161 },
162 "geometry": {
163 "type": "Point",
164 "coordinates": [
165 -73.7781,
166 40.6413
167 ]
168 }
169 },
170 {
171 "type": "Feature",
172 "properties": {
173 "layer": "stop",
174 "name": "New York, US"
175 },
176 "geometry": {
177 "type": "Point",
178 "coordinates": [
179 -74.006,
180 40.7128
181 ]
182 }
183 },
184 {
185 "type": "Feature",
186 "properties": {
187 "layer": "stop",
188 "name": "Washington, US"
189 },
190 "geometry": {
191 "type": "Point",
192 "coordinates": [
193 -77.0369,
194 38.9072
195 ]
196 }
197 },
198 {
199 "type": "Feature",
200 "properties": {
201 "layer": "stop",
202 "name": "FRA"
203 },
204 "geometry": {
205 "type": "Point",
206 "coordinates": [
207 8.5622,
208 50.0333
209 ]
210 }
211 },
212 {
213 "type": "Feature",
214 "properties": {
215 "layer": "stop",
216 "name": "KBP"
217 },
218 "geometry": {
219 "type": "Point",
220 "coordinates": [
221 30.8947,
222 50.345
223 ]
224 }
225 },
226 {
227 "type": "Feature",
228 "properties": {
229 "layer": "stop",
230 "name": "Kyiv, UA"
231 },
232 "geometry": {
233 "type": "Point",
234 "coordinates": [
235 30.5234,
236 50.4501
237 ]
238 }
239 },
240 {
241 "type": "Feature",
242 "properties": {
243 "layer": "stop",
244 "name": "Kharkiv, UA"
245 },
246 "geometry": {
247 "type": "Point",
248 "coordinates": [
249 36.2304,
250 49.9935
251 ]
252 }
253 }
254 ]
255}