Apr 18, 2026 3.7 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 },
148 "geometry": {
149 "type": "Point",
150 "coordinates": [
151 19.2636,
152 42.4304
153 ]
154 }
155 },
156 {
157 "type": "Feature",
158 "properties": {
159 "layer": "stop",
160 "name": "Belgrade, RS"
161 },
162 "geometry": {
163 "type": "Point",
164 "coordinates": [
165 20.4568,
166 44.7866
167 ]
168 }
169 },
170 {
171 "type": "Feature",
172 "properties": {
173 "layer": "stop",
174 "name": "BEG"
175 },
176 "geometry": {
177 "type": "Point",
178 "coordinates": [
179 20.3091,
180 44.8184
181 ]
182 }
183 },
184 {
185 "type": "Feature",
186 "properties": {
187 "layer": "stop",
188 "name": "NYO"
189 },
190 "geometry": {
191 "type": "Point",
192 "coordinates": [
193 16.9122,
194 58.7886
195 ]
196 }
197 },
198 {
199 "type": "Feature",
200 "properties": {
201 "layer": "stop",
202 "name": "WAW"
203 },
204 "geometry": {
205 "type": "Point",
206 "coordinates": [
207 20.9671,
208 52.1657
209 ]
210 }
211 }
212 ]
213}