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 },
79 "geometry": {
80 "type": "Point",
81 "coordinates": [
82 -73.7781,
83 40.6413
84 ]
85 }
86 },
87 {
88 "type": "Feature",
89 "properties": {
90 "layer": "stop",
91 "name": "SAN"
92 },
93 "geometry": {
94 "type": "Point",
95 "coordinates": [
96 -117.1896,
97 32.7336
98 ]
99 }
100 },
101 {
102 "type": "Feature",
103 "properties": {
104 "layer": "stop",
105 "name": "EWR"
106 },
107 "geometry": {
108 "type": "Point",
109 "coordinates": [
110 -74.1687,
111 40.6895
112 ]
113 }
114 },
115 {
116 "type": "Feature",
117 "properties": {
118 "layer": "stop",
119 "name": "Newark, NJ, US"
120 },
121 "geometry": {
122 "type": "Point",
123 "coordinates": [
124 -74.1724,
125 40.7357
126 ]
127 }
128 },
129 {
130 "type": "Feature",
131 "properties": {
132 "layer": "stop",
133 "name": "New York, US"
134 },
135 "geometry": {
136 "type": "Point",
137 "coordinates": [
138 -74.006,
139 40.7128
140 ]
141 }
142 }
143 ]
144}