1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "route",
8 "from": "Kharkiv, UA",
9 "to": "Zaporizhzhia, UA",
10 "date": "2010-08-08",
11 "mode": "bus"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 36.2304,
18 49.9935
19 ],
20 [
21 35.1396,
22 47.8388
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "OZH",
32 "to": "TIV",
33 "date": "2010-08-08",
34 "mode": "flight, transit"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 35.3157,
41 47.8671
42 ],
43 [
44 18.7233,
45 42.4047
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Tivat, ME",
55 "to": "Podgorica, ME",
56 "date": "2010-08-08",
57 "mode": "bus"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 18.7233,
64 42.4047
65 ],
66 [
67 19.2636,
68 42.4304
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "stop",
77 "name": "Kharkiv, UA",
78 "transit": false
79 },
80 "geometry": {
81 "type": "Point",
82 "coordinates": [
83 36.2304,
84 49.9935
85 ]
86 }
87 },
88 {
89 "type": "Feature",
90 "properties": {
91 "layer": "stop",
92 "name": "Zaporizhzhia, UA",
93 "transit": false
94 },
95 "geometry": {
96 "type": "Point",
97 "coordinates": [
98 35.1396,
99 47.8388
100 ]
101 }
102 },
103 {
104 "type": "Feature",
105 "properties": {
106 "layer": "stop",
107 "name": "OZH",
108 "transit": true
109 },
110 "geometry": {
111 "type": "Point",
112 "coordinates": [
113 35.3157,
114 47.8671
115 ]
116 }
117 },
118 {
119 "type": "Feature",
120 "properties": {
121 "layer": "stop",
122 "name": "TIV",
123 "transit": true
124 },
125 "geometry": {
126 "type": "Point",
127 "coordinates": [
128 18.7233,
129 42.4047
130 ]
131 }
132 },
133 {
134 "type": "Feature",
135 "properties": {
136 "layer": "stop",
137 "name": "Tivat, ME",
138 "transit": false
139 },
140 "geometry": {
141 "type": "Point",
142 "coordinates": [
143 18.7233,
144 42.4047
145 ]
146 }
147 },
148 {
149 "type": "Feature",
150 "properties": {
151 "layer": "stop",
152 "name": "Podgorica, ME",
153 "transit": false
154 },
155 "geometry": {
156 "type": "Point",
157 "coordinates": [
158 19.2636,
159 42.4304
160 ]
161 }
162 }
163 ]
164}