{ "$schema": "https://vega.github.io/schema/vega/v5.json", "background": "white", "padding": 5, "width": 200, "height": 200, "data": [ {"name": "source_0", "transform": [{"type": "graticule", "step": [15, 15]}]} ], "projections": [ { "name": "projection", "size": {"signal": "[width, height]"}, "fit": {"signal": "data('source_0')"}, "type": "orthographic", "rotate": [0, -45, 0] } ], "marks": [ { "name": "marks", "type": "shape", "style": ["geoshape"], "from": {"data": "source_0"}, "encode": { "update": { "fill": {"value": "transparent"}, "stroke": {"value": "#4c78a8"}, "ariaRoleDescription": {"value": "geoshape"} } }, "transform": [{"type": "geoshape", "projection": "projection"}] } ] }