Apr 18, 2026 2.7 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "JFK",
9 "to": "SAN",
10 "date": "2022-09-07",
11 "mode": "flight (AS 178)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -73.7781,
18 40.6413
19 ],
20 [
21 -117.1896,
22 32.7336
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "SAN",
32 "to": "EWR",
33 "date": "2022-09-14",
34 "mode": "flight(AS 772), transit"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -117.1896,
41 32.7336
42 ],
43 [
44 -74.1687,
45 40.6895
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Newark, NJ, US",
55 "to": "New York, US",
56 "date": "2022-09-14",
57 "mode": "car"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 -74.1724,
64 40.7357
65 ],
66 [
67 -74.006,
68 40.7128
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "stop",
77 "name": "JFK",
78 "transit": false
79 },
80 "geometry": {
81 "type": "Point",
82 "coordinates": [
83 -73.7781,
84 40.6413
85 ]
86 }
87 },
88 {
89 "type": "Feature",
90 "properties": {
91 "layer": "stop",
92 "name": "SAN",
93 "transit": false
94 },
95 "geometry": {
96 "type": "Point",
97 "coordinates": [
98 -117.1896,
99 32.7336
100 ]
101 }
102 },
103 {
104 "type": "Feature",
105 "properties": {
106 "layer": "stop",
107 "name": "EWR",
108 "transit": true
109 },
110 "geometry": {
111 "type": "Point",
112 "coordinates": [
113 -74.1687,
114 40.6895
115 ]
116 }
117 },
118 {
119 "type": "Feature",
120 "properties": {
121 "layer": "stop",
122 "name": "Newark, NJ, US",
123 "transit": false
124 },
125 "geometry": {
126 "type": "Point",
127 "coordinates": [
128 -74.1724,
129 40.7357
130 ]
131 }
132 },
133 {
134 "type": "Feature",
135 "properties": {
136 "layer": "stop",
137 "name": "New York, US",
138 "transit": false
139 },
140 "geometry": {
141 "type": "Point",
142 "coordinates": [
143 -74.006,
144 40.7128
145 ]
146 }
147 }
148 ]
149}