Created
June 24, 2022 17:22
-
-
Save lukecampbell/6934ed5fec0d24a95508dec04206ebac to your computer and use it in GitHub Desktop.
An example of how it might look to plot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"properties": { | |
"airline": "Southwest", | |
"departure": "KLAX", | |
"arrival": "KJFK" | |
}, | |
"geometry": { | |
"type": "LineString", | |
"coordinates": [ | |
[ | |
-118.4080486, | |
33.9424964 | |
], | |
[ | |
-73.7786925, | |
40.6399278 | |
] | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"stroke": "#aa0011", | |
"stroke-width": 2, | |
"stroke-opacity": 1, | |
"airline": "Southwest", | |
"departure": "KPVD", | |
"arrival": "KDCA" | |
}, | |
"geometry": { | |
"type": "LineString", | |
"coordinates": [ | |
[ | |
-77.0377214, | |
38.8514403 | |
], | |
[ | |
-71.4277222, | |
41.7223333 | |
] | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment