Skip to content

Instantly share code, notes, and snippets.

@yssymmt
Created October 22, 2023 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yssymmt/939b817e6ab175b5dc976686dd4bf391 to your computer and use it in GitHub Desktop.
Save yssymmt/939b817e6ab175b5dc976686dd4bf391 to your computer and use it in GitHub Desktop.
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"width": 600,
"height": 600,
"layer": [
{
"data": {
"url": "jp_pref.l.topojson",
"format": {
"type": "topojson",
"feature": "pref"
}
},
"mark": {
"type": "geoshape",
"stroke": "white",
"strokeWidth": 0.5
},
"encoding": {
"color": {
"value": "#e0e0e0"
}
}
},
{
"data": {
"url": "geoc_02linebuffer.csv",
"format": {
"type": "csv"
}
},
"mark": {"type": "line", "opacity": 0.5},
"encoding": {
"longitude": {
"field": "経度",
"type": "quantitative"
},
"latitude": {
"field": "緯度",
"type": "quantitative"
},
"order": {
"field": "順序"
},
"detail": {
"field": "番号",
"type": "nominal"
},
"color": {
"field": "名前",
"type": "nominal",
"scale": { "range": ["#c71585"] }
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment