Apr 18, 2026 2.1 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "SFO",
9 "to": "DEN",
10 "date": "2015-09-23",
11 "mode": "flight (UA1736, 737-900), transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -122.379,
18 37.6213
19 ],
20 [
21 -104.6732,
22 39.8561
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "DEN",
32 "to": "STL",
33 "date": "2015-09-23",
34 "mode": "flight (UA3395, ERJ-145)"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -104.6732,
41 39.8561
42 ],
43 [
44 -90.37,
45 38.7487
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "flight",
54 "from": "STL",
55 "to": "SFO",
56 "date": "2015-09-28",
57 "mode": "flight (UA6421, ERJ-170)"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -90.37,
64 38.7487
65 ],
66 [
67 -122.379,
68 37.6213
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "stop",
77 "name": "SFO"
78 },
79 "geometry": {
80 "type": "Point",
81 "coordinates": [
82 -122.379,
83 37.6213
84 ]
85 }
86 },
87 {
88 "type": "Feature",
89 "properties": {
90 "layer": "stop",
91 "name": "DEN"
92 },
93 "geometry": {
94 "type": "Point",
95 "coordinates": [
96 -104.6732,
97 39.8561
98 ]
99 }
100 },
101 {
102 "type": "Feature",
103 "properties": {
104 "layer": "stop",
105 "name": "STL"
106 },
107 "geometry": {
108 "type": "Point",
109 "coordinates": [
110 -90.37,
111 38.7487
112 ]
113 }
114 }
115 ]
116}