-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSAMS-locality-choropleth.json
52 lines (52 loc) · 1.39 KB
/
SAMS-locality-choropleth.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://vega.github.io/schema/vega-lite/v3.json",
"description": "Basic choropleth (rate/ratio)",
"autosize": "fit",
"width": 600,
"height": 300,
"title": "Number of SAMS packages, 2018/19",
"data": {
"url": "https://www.trafforddatalab.io/spatial_data/council_defined/trafford_localities.geojson",
"format": {"property": "features"}
},
"transform": [
{
"lookup": "properties.locality",
"from": {
"data": {
"values": [
{"locality": "Central", "value": 286},
{"locality": "North", "value": 232},
{"locality": "South", "value": 326},
{"locality": "West", "value": 218}
]
},
"key": "locality",
"fields": ["value"]
}
}
],
"mark": {"type": "geoshape", "stroke": "white", "strokeWidth": 1},
"projection": {"type": "mercator"},
"encoding": {
"color": {
"field": "value",
"scale": {"scheme": "blues"},
"type": "quantitative",
"legend": {
"title": null,
"direction": "horizontal",
"orient": "bottom-left"
}
},
"tooltip": [
{"field": "properties.locality", "type": "nominal", "title": "Locality"},
{
"field": "value",
"type": "quantitative",
"title": "Rate"
}
]
},
"config": {"view": {"stroke": "transparent"}}
}