Apr 18, 2026 2.5 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "WAW",
9 "to": "IST",
10 "date": "2023-03-27",
11 "mode": "flight(TK1266)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 20.9671,
18 52.1657
19 ],
20 [
21 28.8141,
22 40.9769
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "IST",
32 "to": "DSS",
33 "date": "2023-03-31",
34 "mode": "flight(TK503)"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 28.8141,
41 40.9769
42 ],
43 [
44 -17.4902,
45 14.7397
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "flight",
54 "from": "DSS",
55 "to": "IST",
56 "date": "2023-04-08",
57 "mode": "flight(TK504), transit, next day"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -17.4902,
64 14.7397
65 ],
66 [
67 28.8141,
68 40.9769
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "flight",
77 "from": "IST",
78 "to": "WAW",
79 "date": "2023-04-09",
80 "mode": "flight(TK1265)"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 28.8141,
87 40.9769
88 ],
89 [
90 20.9671,
91 52.1657
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "stop",
100 "name": "WAW",
101 "transit": false
102 },
103 "geometry": {
104 "type": "Point",
105 "coordinates": [
106 20.9671,
107 52.1657
108 ]
109 }
110 },
111 {
112 "type": "Feature",
113 "properties": {
114 "layer": "stop",
115 "name": "IST",
116 "transit": false
117 },
118 "geometry": {
119 "type": "Point",
120 "coordinates": [
121 28.8141,
122 40.9769
123 ]
124 }
125 },
126 {
127 "type": "Feature",
128 "properties": {
129 "layer": "stop",
130 "name": "DSS",
131 "transit": false
132 },
133 "geometry": {
134 "type": "Point",
135 "coordinates": [
136 -17.4902,
137 14.7397
138 ]
139 }
140 }
141 ]
142}