Skip to content

Instantly share code, notes, and snippets.

@lukecampbell
Created June 24, 2022 17:22
Show Gist options
  • Save lukecampbell/6934ed5fec0d24a95508dec04206ebac to your computer and use it in GitHub Desktop.
Save lukecampbell/6934ed5fec0d24a95508dec04206ebac to your computer and use it in GitHub Desktop.
An example of how it might look to plot
Display the source blob
Display the rendered blob
Raw
{
"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