1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "TGD",
9 "to": "BUD",
10 "date": "2011-12-28",
11 "mode": "flight(MA495, 737-600), transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 19.2519,
18 42.3593
19 ],
20 [
21 19.2556,
22 47.4298
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "BUD",
32 "to": "KBP",
33 "date": "2011-12-29",
34 "mode": "flight(MA110, 737-800), transit"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 19.2556,
41 47.4298
42 ],
43 [
44 30.8947,
45 50.345
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Kyiv, UA",
55 "to": "Kharkiv, UA",
56 "date": "2011-12-29",
57 "mode": "train"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 30.5234,
64 50.4501
65 ],
66 [
67 36.2304,
68 49.9935
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "stop",
77 "name": "TGD",
78 "transit": true
79 },
80 "geometry": {
81 "type": "Point",
82 "coordinates": [
83 19.2519,
84 42.3593
85 ]
86 }
87 },
88 {
89 "type": "Feature",
90 "properties": {
91 "layer": "stop",
92 "name": "BUD",
93 "transit": true
94 },
95 "geometry": {
96 "type": "Point",
97 "coordinates": [
98 19.2556,
99 47.4298
100 ]
101 }
102 },
103 {
104 "type": "Feature",
105 "properties": {
106 "layer": "stop",
107 "name": "KBP",
108 "transit": true
109 },
110 "geometry": {
111 "type": "Point",
112 "coordinates": [
113 30.8947,
114 50.345
115 ]
116 }
117 },
118 {
119 "type": "Feature",
120 "properties": {
121 "layer": "stop",
122 "name": "Kyiv, UA",
123 "transit": false
124 },
125 "geometry": {
126 "type": "Point",
127 "coordinates": [
128 30.5234,
129 50.4501
130 ]
131 }
132 },
133 {
134 "type": "Feature",
135 "properties": {
136 "layer": "stop",
137 "name": "Kharkiv, UA",
138 "transit": false
139 },
140 "geometry": {
141 "type": "Point",
142 "coordinates": [
143 36.2304,
144 49.9935
145 ]
146 }
147 }
148 ]
149}