map = Plot.plot({
width,
projection: "equal-earth",
marks: [
Plot.geo(land, { fill: "#ececec" }),
Plot.dot(data_pv, {
x: "x",
y: "y",
fill: "blue",
opacity: 0.05,
r: 1
}),
Plot.dot(data_pf, {
x: "x",
y: "y",
fill: "red",
opacity: 0.05,
r: 1
}),
Plot.sphere()
]
})