-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathvega.json
53 lines (53 loc) · 963 Bytes
/
vega.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
53
{
"axes": [],
"data": [
{
"format": {
"feature": "world-countries",
"type": "topojson"
},
"name": "countries",
"transform": [
{
"projection": "winkel3",
"scale": 200,
"translate": [
480.0,
250.0
],
"type": "geopath",
"value": "data"
}
],
"url": "/Users/chrisralbon/Downloads/Location History/world-countries.topo.json"
}
],
"height": 500,
"legends": [],
"marks": [
{
"from": {
"data": "countries"
},
"properties": {
"enter": {
"path": {
"field": "path"
},
"stroke": {
"value": "#000000"
}
},
"update": {
"fill": {
"value": "steelblue"
}
}
},
"type": "path"
}
],
"padding": "auto",
"scales": [],
"width": 960
}