{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "config": { "view": { "stroke": null } }, "data": { "url": "https://vega.github.io/vega-lite/data/zipcodes.csv" }, "description": "US zip codes: One dot per zipcode colored by first digit", "encoding": { "color": { "field": "digit", "type": "nominal" }, "latitude": { "field": "latitude", "type": "quantitative" }, "longitude": { "field": "longitude", "type": "quantitative" }, "size": { "value": 1 } }, "height": 300, "mark": "circle", "projection": { "type": "albersUsa" }, "transform": [ { "as": "digit", "calculate": "substring(datum.zip_code, 0, 1)" } ], "width": 500 }