-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathwalmarts.ts
69 lines (67 loc) · 1.81 KB
/
walmarts.ts
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import * as Plot from "@observablehq/plot";
import * as d3 from "d3";
import {feature, mesh} from "topojson-client";
export async function walmarts() {
const [walmarts, statemesh] = await Promise.all([
d3.tsv<any>("data/walmarts.tsv", d3.autoType),
d3.json<any>("data/us-counties-10m.json").then((us) =>
mesh(us, {
type: "GeometryCollection",
geometries: us.objects.states.geometries.filter((d) => d.id !== "02" && d.id !== "15")
})
)
]);
return Plot.plot({
width: 960,
height: 600,
projection: "albers-usa",
color: {
legend: true,
label: "First year opened",
scheme: "spectral"
},
r: {
range: [0, 20]
},
marks: [
Plot.geo(statemesh, {strokeOpacity: 0.25}),
Plot.dot(
walmarts,
Plot.hexbin(
{r: "count", fill: "min", title: "min"},
{x: "longitude", y: "latitude", fill: "date", stroke: "white", title: "date"}
)
)
]
});
}
export async function walmartsDateContours() {
const [walmarts, [statemesh, nation]] = await Promise.all([
d3.tsv<any>("data/walmarts.tsv", d3.autoType),
d3.json<any>("data/us-counties-10m.json").then((us) => [
mesh(us, {
type: "GeometryCollection",
geometries: us.objects.states.geometries.filter((d) => d.id !== "02" && d.id !== "15")
}),
feature(us, us.objects.nation)
])
]);
return Plot.plot({
width: 960,
height: 600,
projection: "albers",
color: {legend: true, label: "Mean opening date"},
clip: nation,
marks: [
Plot.contour(walmarts, {
x: "longitude",
y: "latitude",
fill: "date",
interpolate: "random-walk",
blur: 5
}),
Plot.geo(statemesh, {strokeOpacity: 0.25}),
Plot.geo(nation, {strokeWidth: 1.5})
]
});
}