Apr 18, 2026 4.2 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "route",
8 "from": "Kharkiv, UA",
9 "to": "Lviv, UA",
10 "date": "2008-10-31",
11 "mode": "train"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 36.2304,
18 49.9935
19 ],
20 [
21 24.0297,
22 49.8397
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Lviv, UA",
32 "to": "Prague, CZ",
33 "date": "2008-11-02",
34 "mode": "bus"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 24.0297,
41 49.8397
42 ],
43 [
44 14.4378,
45 50.0755
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Prague, CZ",
55 "to": "Karlovy Vary, CZ",
56 "date": "2008-11-06",
57 "mode": "bus"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 14.4378,
64 50.0755
65 ],
66 [
67 12.8714,
68 50.2306
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "route",
77 "from": "Karlovy Vary, CZ",
78 "to": "Prague, CZ",
79 "date": "2008-11-06",
80 "mode": "bus"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 12.8714,
87 50.2306
88 ],
89 [
90 14.4378,
91 50.0755
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "route",
100 "from": "Prague, CZ",
101 "to": "Dresden, DE",
102 "date": "2008-11-07",
103 "mode": "bus"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 14.4378,
110 50.0755
111 ],
112 [
113 13.7373,
114 51.0504
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "route",
123 "from": "Dresden, DE",
124 "to": "Lviv, UA",
125 "date": "2008-11-07",
126 "mode": "bus"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 13.7373,
133 51.0504
134 ],
135 [
136 24.0297,
137 49.8397
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "route",
146 "from": "Lviv, UA",
147 "to": "Kharkiv, UA",
148 "date": "2008-11-07",
149 "mode": "train"
150 },
151 "geometry": {
152 "type": "LineString",
153 "coordinates": [
154 [
155 24.0297,
156 49.8397
157 ],
158 [
159 36.2304,
160 49.9935
161 ]
162 ]
163 }
164 },
165 {
166 "type": "Feature",
167 "properties": {
168 "layer": "stop",
169 "name": "Kharkiv, UA"
170 },
171 "geometry": {
172 "type": "Point",
173 "coordinates": [
174 36.2304,
175 49.9935
176 ]
177 }
178 },
179 {
180 "type": "Feature",
181 "properties": {
182 "layer": "stop",
183 "name": "Lviv, UA"
184 },
185 "geometry": {
186 "type": "Point",
187 "coordinates": [
188 24.0297,
189 49.8397
190 ]
191 }
192 },
193 {
194 "type": "Feature",
195 "properties": {
196 "layer": "stop",
197 "name": "Prague, CZ"
198 },
199 "geometry": {
200 "type": "Point",
201 "coordinates": [
202 14.4378,
203 50.0755
204 ]
205 }
206 },
207 {
208 "type": "Feature",
209 "properties": {
210 "layer": "stop",
211 "name": "Karlovy Vary, CZ"
212 },
213 "geometry": {
214 "type": "Point",
215 "coordinates": [
216 12.8714,
217 50.2306
218 ]
219 }
220 },
221 {
222 "type": "Feature",
223 "properties": {
224 "layer": "stop",
225 "name": "Dresden, DE"
226 },
227 "geometry": {
228 "type": "Point",
229 "coordinates": [
230 13.7373,
231 51.0504
232 ]
233 }
234 }
235 ]
236}