Apr 18, 2026 3.9 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "route",
8 "from": "Podgorica, ME",
9 "to": "Belgrade, RS",
10 "date": "2011-05-15",
11 "mode": "bus, transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 19.2636,
18 42.4304
19 ],
20 [
21 20.4568,
22 44.7866
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "BEG",
32 "to": "NYO",
33 "date": "2011-05-16",
34 "mode": "flight"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 20.3091,
41 44.8184
42 ],
43 [
44 16.9122,
45 58.7886
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "flight",
54 "from": "NYO",
55 "to": "WAW",
56 "date": "2011-05-17",
57 "mode": "flight"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 16.9122,
64 58.7886
65 ],
66 [
67 20.9671,
68 52.1657
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "flight",
77 "from": "WAW",
78 "to": "NYO",
79 "date": "2011-05-21",
80 "mode": "flight"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 20.9671,
87 52.1657
88 ],
89 [
90 16.9122,
91 58.7886
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "flight",
100 "from": "NYO",
101 "to": "BEG",
102 "date": "2011-05-23",
103 "mode": "flight"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 16.9122,
110 58.7886
111 ],
112 [
113 20.3091,
114 44.8184
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "route",
123 "from": "Belgrade, RS",
124 "to": "Podgorica, ME",
125 "date": "2011-05-25",
126 "mode": "bus"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 20.4568,
133 44.7866
134 ],
135 [
136 19.2636,
137 42.4304
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "stop",
146 "name": "Podgorica, ME",
147 "transit": false
148 },
149 "geometry": {
150 "type": "Point",
151 "coordinates": [
152 19.2636,
153 42.4304
154 ]
155 }
156 },
157 {
158 "type": "Feature",
159 "properties": {
160 "layer": "stop",
161 "name": "Belgrade, RS",
162 "transit": false
163 },
164 "geometry": {
165 "type": "Point",
166 "coordinates": [
167 20.4568,
168 44.7866
169 ]
170 }
171 },
172 {
173 "type": "Feature",
174 "properties": {
175 "layer": "stop",
176 "name": "BEG",
177 "transit": false
178 },
179 "geometry": {
180 "type": "Point",
181 "coordinates": [
182 20.3091,
183 44.8184
184 ]
185 }
186 },
187 {
188 "type": "Feature",
189 "properties": {
190 "layer": "stop",
191 "name": "NYO",
192 "transit": false
193 },
194 "geometry": {
195 "type": "Point",
196 "coordinates": [
197 16.9122,
198 58.7886
199 ]
200 }
201 },
202 {
203 "type": "Feature",
204 "properties": {
205 "layer": "stop",
206 "name": "WAW",
207 "transit": false
208 },
209 "geometry": {
210 "type": "Point",
211 "coordinates": [
212 20.9671,
213 52.1657
214 ]
215 }
216 }
217 ]
218}