1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "JFK",
9 "to": "LHR",
10 "date": "2023-01-31",
11 "mode": "flight (AF 6759), next day"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -73.7781,
18 40.6413
19 ],
20 [
21 -0.4614,
22 51.47
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "LHR",
32 "to": "KRK",
33 "date": "2023-02-19",
34 "mode": "flight (BA 872)"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -0.4614,
41 51.47
42 ],
43 [
44 19.7836,
45 50.0777
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Krakow, PL",
55 "to": "Warsaw, PL",
56 "date": "2023-03-19",
57 "mode": "train"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 19.945,
64 50.0647
65 ],
66 [
67 21.0122,
68 52.2297
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "flight",
77 "from": "WAW",
78 "to": "IST",
79 "date": "2023-03-27",
80 "mode": "flight(TK1266)"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 20.9671,
87 52.1657
88 ],
89 [
90 28.8141,
91 40.9769
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "stop",
100 "name": "JFK"
101 },
102 "geometry": {
103 "type": "Point",
104 "coordinates": [
105 -73.7781,
106 40.6413
107 ]
108 }
109 },
110 {
111 "type": "Feature",
112 "properties": {
113 "layer": "stop",
114 "name": "LHR"
115 },
116 "geometry": {
117 "type": "Point",
118 "coordinates": [
119 -0.4614,
120 51.47
121 ]
122 }
123 },
124 {
125 "type": "Feature",
126 "properties": {
127 "layer": "stop",
128 "name": "KRK"
129 },
130 "geometry": {
131 "type": "Point",
132 "coordinates": [
133 19.7836,
134 50.0777
135 ]
136 }
137 },
138 {
139 "type": "Feature",
140 "properties": {
141 "layer": "stop",
142 "name": "Krakow, PL"
143 },
144 "geometry": {
145 "type": "Point",
146 "coordinates": [
147 19.945,
148 50.0647
149 ]
150 }
151 },
152 {
153 "type": "Feature",
154 "properties": {
155 "layer": "stop",
156 "name": "Warsaw, PL"
157 },
158 "geometry": {
159 "type": "Point",
160 "coordinates": [
161 21.0122,
162 52.2297
163 ]
164 }
165 },
166 {
167 "type": "Feature",
168 "properties": {
169 "layer": "stop",
170 "name": "WAW"
171 },
172 "geometry": {
173 "type": "Point",
174 "coordinates": [
175 20.9671,
176 52.1657
177 ]
178 }
179 },
180 {
181 "type": "Feature",
182 "properties": {
183 "layer": "stop",
184 "name": "IST"
185 },
186 "geometry": {
187 "type": "Point",
188 "coordinates": [
189 28.8141,
190 40.9769
191 ]
192 }
193 }
194 ]
195}