Apr 18, 2026 3.8 KB of v4
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "SFO",
9 "to": "SIN",
10 "date": "2017-03-24",
11 "mode": "flight (SQ1, 777-300), transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.379,
18 37.6213
19 ],
20 [
21 103.9894,
22 1.3502
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "SIN",
32 "to": "DPS",
33 "date": "2017-03-25",
34 "mode": "flight(SQ946, A330-300)"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 103.9894,
41 1.3502
42 ],
43 [
44 115.1671,
45 -8.7482
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Denpasar, ID",
55 "to": "Gili Trawangan, ID",
56 "date": "2017-03-26",
57 "mode": "boat"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 115.2126,
64 -8.65
65 ],
66 [
67 116.0345,
68 -8.352
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "route",
77 "from": "Gili Trawangan, ID",
78 "to": "Denpasar, ID",
79 "date": "2017-04-07",
80 "mode": "boat"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 116.0345,
87 -8.352
88 ],
89 [
90 115.2126,
91 -8.65
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "flight",
100 "from": "DPS",
101 "to": "SIN",
102 "date": "2017-04-09",
103 "mode": "flight (ISQ943, A330-300), transit"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 115.1671,
110 -8.7482
111 ],
112 [
113 103.9894,
114 1.3502
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "route",
123 "from": "SIN",
124 "to": "SFO",
125 "date": "2017-04-09",
126 "mode": "SQ2, 777-300"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 103.9894,
133 1.3502
134 ],
135 [
136 -122.379,
137 37.6213
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "stop",
146 "name": "SFO"
147 },
148 "geometry": {
149 "type": "Point",
150 "coordinates": [
151 -122.379,
152 37.6213
153 ]
154 }
155 },
156 {
157 "type": "Feature",
158 "properties": {
159 "layer": "stop",
160 "name": "SIN"
161 },
162 "geometry": {
163 "type": "Point",
164 "coordinates": [
165 103.9894,
166 1.3502
167 ]
168 }
169 },
170 {
171 "type": "Feature",
172 "properties": {
173 "layer": "stop",
174 "name": "DPS"
175 },
176 "geometry": {
177 "type": "Point",
178 "coordinates": [
179 115.1671,
180 -8.7482
181 ]
182 }
183 },
184 {
185 "type": "Feature",
186 "properties": {
187 "layer": "stop",
188 "name": "Denpasar, ID"
189 },
190 "geometry": {
191 "type": "Point",
192 "coordinates": [
193 115.2126,
194 -8.65
195 ]
196 }
197 },
198 {
199 "type": "Feature",
200 "properties": {
201 "layer": "stop",
202 "name": "Gili Trawangan, ID"
203 },
204 "geometry": {
205 "type": "Point",
206 "coordinates": [
207 116.0345,
208 -8.352
209 ]
210 }
211 }
212 ]
213}