Apr 18, 2026 2.9 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "EWR",
9 "to": "GRU",
10 "date": "2021-11-21",
11 "mode": "flight (UA 149), transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -74.1687,
18 40.6895
19 ],
20 [
21 -46.473,
22 -23.4356
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "CGH",
32 "to": "SDU",
33 "date": "2021-11-22",
34 "mode": "flight"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -46.6564,
41 -23.6261
42 ],
43 [
44 -43.1631,
45 -22.9105
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "flight",
54 "from": "GIG",
55 "to": "BOG",
56 "date": "2021-12-13",
57 "mode": "flight(AV 260), transit"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -43.2436,
64 -22.8099
65 ],
66 [
67 -74.1469,
68 4.7016
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "stop",
77 "name": "EWR",
78 "transit": true
79 },
80 "geometry": {
81 "type": "Point",
82 "coordinates": [
83 -74.1687,
84 40.6895
85 ]
86 }
87 },
88 {
89 "type": "Feature",
90 "properties": {
91 "layer": "stop",
92 "name": "GRU",
93 "transit": true
94 },
95 "geometry": {
96 "type": "Point",
97 "coordinates": [
98 -46.473,
99 -23.4356
100 ]
101 }
102 },
103 {
104 "type": "Feature",
105 "properties": {
106 "layer": "stop",
107 "name": "CGH",
108 "transit": false
109 },
110 "geometry": {
111 "type": "Point",
112 "coordinates": [
113 -46.6564,
114 -23.6261
115 ]
116 }
117 },
118 {
119 "type": "Feature",
120 "properties": {
121 "layer": "stop",
122 "name": "SDU",
123 "transit": false
124 },
125 "geometry": {
126 "type": "Point",
127 "coordinates": [
128 -43.1631,
129 -22.9105
130 ]
131 }
132 },
133 {
134 "type": "Feature",
135 "properties": {
136 "layer": "stop",
137 "name": "GIG",
138 "transit": true
139 },
140 "geometry": {
141 "type": "Point",
142 "coordinates": [
143 -43.2436,
144 -22.8099
145 ]
146 }
147 },
148 {
149 "type": "Feature",
150 "properties": {
151 "layer": "stop",
152 "name": "BOG",
153 "transit": true
154 },
155 "geometry": {
156 "type": "Point",
157 "coordinates": [
158 -74.1469,
159 4.7016
160 ]
161 }
162 }
163 ]
164}