Skip to content

Instantly share code, notes, and snippets.

@RunyangWang
Last active March 25, 2020 19:34
Show Gist options
  • Save RunyangWang/f2a32f47249a64dcc617dd6dddddfee7 to your computer and use it in GitHub Desktop.
Save RunyangWang/f2a32f47249a64dcc617dd6dddddfee7 to your computer and use it in GitHub Desktop.
vega-lite-q3
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"width": "container",
"height": "container",
"data": {
"url": "https://raw.githubusercontent.com/vda-lab/vda-lab.github.io/master/assets/station_366.json"
},
"transform": [
{
"filter": {"field": "endstation_id", "equal": "336"}
}
],
"selection": {
"grid": {
"type": "interval", "bind": "scales"
}
},
"mark": "circle",
"encoding": {
"x": {"field": "startstation_longitude", "type": "quantitative","axis": {"title": "longitude"}},
"y": {"field": "startstation_latitude", "type": "quantitative","axis": {"title": "latitude"}},
"size": {
"aggregate": "count"
},
"opacity": {
"value": 0.7
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment