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 },
79 "geometry": {
80 "type": "Point",
81 "coordinates": [
82 19.2519,
83 42.3593
84 ]
85 }
86 },
87 {
88 "type": "Feature",
89 "properties": {
90 "layer": "stop",
91 "name": "BUD"
92 },
93 "geometry": {
94 "type": "Point",
95 "coordinates": [
96 19.2556,
97 47.4298
98 ]
99 }
100 },
101 {
102 "type": "Feature",
103 "properties": {
104 "layer": "stop",
105 "name": "KBP"
106 },
107 "geometry": {
108 "type": "Point",
109 "coordinates": [
110 30.8947,
111 50.345
112 ]
113 }
114 },
115 {
116 "type": "Feature",
117 "properties": {
118 "layer": "stop",
119 "name": "Kyiv, UA"
120 },
121 "geometry": {
122 "type": "Point",
123 "coordinates": [
124 30.5234,
125 50.4501
126 ]
127 }
128 },
129 {
130 "type": "Feature",
131 "properties": {
132 "layer": "stop",
133 "name": "Kharkiv, UA"
134 },
135 "geometry": {
136 "type": "Point",
137 "coordinates": [
138 36.2304,
139 49.9935
140 ]
141 }
142 }
143 ]
144}