Apr 18, 2026 1.7 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "EWR",
9 "to": "MEX",
10 "date": "2022-12-18",
11 "mode": "flight (UA 2251)"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -74.1687,
18 40.6895
19 ],
20 [
21 -99.0721,
22 19.4363
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "flight",
31 "from": "MEX",
32 "to": "JFK",
33 "date": "2023-01-15",
34 "mode": "flight(AM 408)"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -99.0721,
41 19.4363
42 ],
43 [
44 -73.7781,
45 40.6413
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "stop",
54 "name": "EWR",
55 "transit": false
56 },
57 "geometry": {
58 "type": "Point",
59 "coordinates": [
60 -74.1687,
61 40.6895
62 ]
63 }
64 },
65 {
66 "type": "Feature",
67 "properties": {
68 "layer": "stop",
69 "name": "MEX",
70 "transit": false
71 },
72 "geometry": {
73 "type": "Point",
74 "coordinates": [
75 -99.0721,
76 19.4363
77 ]
78 }
79 },
80 {
81 "type": "Feature",
82 "properties": {
83 "layer": "stop",
84 "name": "JFK",
85 "transit": false
86 },
87 "geometry": {
88 "type": "Point",
89 "coordinates": [
90 -73.7781,
91 40.6413
92 ]
93 }
94 }
95 ]
96}