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 "transit": false
102 },
103 "geometry": {
104 "type": "Point",
105 "coordinates": [
106 -73.7781,
107 40.6413
108 ]
109 }
110 },
111 {
112 "type": "Feature",
113 "properties": {
114 "layer": "stop",
115 "name": "LHR",
116 "transit": false
117 },
118 "geometry": {
119 "type": "Point",
120 "coordinates": [
121 -0.4614,
122 51.47
123 ]
124 }
125 },
126 {
127 "type": "Feature",
128 "properties": {
129 "layer": "stop",
130 "name": "KRK",
131 "transit": false
132 },
133 "geometry": {
134 "type": "Point",
135 "coordinates": [
136 19.7836,
137 50.0777
138 ]
139 }
140 },
141 {
142 "type": "Feature",
143 "properties": {
144 "layer": "stop",
145 "name": "Krakow, PL",
146 "transit": false
147 },
148 "geometry": {
149 "type": "Point",
150 "coordinates": [
151 19.945,
152 50.0647
153 ]
154 }
155 },
156 {
157 "type": "Feature",
158 "properties": {
159 "layer": "stop",
160 "name": "Warsaw, PL",
161 "transit": false
162 },
163 "geometry": {
164 "type": "Point",
165 "coordinates": [
166 21.0122,
167 52.2297
168 ]
169 }
170 },
171 {
172 "type": "Feature",
173 "properties": {
174 "layer": "stop",
175 "name": "WAW",
176 "transit": false
177 },
178 "geometry": {
179 "type": "Point",
180 "coordinates": [
181 20.9671,
182 52.1657
183 ]
184 }
185 },
186 {
187 "type": "Feature",
188 "properties": {
189 "layer": "stop",
190 "name": "IST",
191 "transit": false
192 },
193 "geometry": {
194 "type": "Point",
195 "coordinates": [
196 28.8141,
197 40.9769
198 ]
199 }
200 }
201 ]
202}