Skip to content

Instantly share code, notes, and snippets.

@jackliusr
Created January 19, 2021 13:09
Show Gist options
  • Save jackliusr/9f540365691ae582b8f87baf28082ece to your computer and use it in GitHub Desktop.
Save jackliusr/9f540365691ae582b8f87baf28082ece to your computer and use it in GitHub Desktop.
vega-lite to visualize real-time data from api.data.gov.sg
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"width": 500,
"height": 300,
"data": {
"url": "https://api.data.gov.sg/v1/environment/2-hour-weather-forecast",
"format": { "type": "json","property": "area_metadata"}
},
"projection": {
"type": "equalEarth"
},
"mark": "circle",
"encoding": {
"longitude": {
"field": "label_location.longitude",
"type": "quantitative"
},
"latitude": {
"field": "label_location.latitude",
"type": "quantitative"
},
"size": {"value": 10}
},
"config": {
"view": {
"stroke": "transparent"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment