Apr 18, 2026 964 B of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "LIS",
9 "to": "KRK",
10 "date": "2023-12-28",
11 "mode": "flight (Ryanair)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -9.1354,
18 38.7742
19 ],
20 [
21 19.7836,
22 50.0777
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "stop",
31 "name": "LIS"
32 },
33 "geometry": {
34 "type": "Point",
35 "coordinates": [
36 -9.1354,
37 38.7742
38 ]
39 }
40 },
41 {
42 "type": "Feature",
43 "properties": {
44 "layer": "stop",
45 "name": "KRK"
46 },
47 "geometry": {
48 "type": "Point",
49 "coordinates": [
50 19.7836,
51 50.0777
52 ]
53 }
54 }
55 ]
56}