{
"$schema": "https://vega.github.io/schema/vega-lite/v3.json",
"width": 500,
"height": 300,
"data": {
"url": "https://raw.githubusercontent.com/mattijn/datasets/master/mesh2d_flowelem_bl.json",
"format": {
"type": "topojson",
"feature": "mesh2d_flowelem_bl"
}
},
"projection": {
"type": "identity",
"reflectY": true
},
"mark": {"type":"geoshape","stroke":"black","strokeWidth":0.5},
"encoding": {
"color": {
"field": "properties.var",
"type": "quantitative",
"title": "flow element bedlevel [m]"
}
}
}