Plot.plot({
width,
x: { domain: [0, 24] },
marks: [
Plot.ruleY([0]),
Plot.lineY(sunlightMinutes(new Date("2022-01-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-02-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-03-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-04-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-05-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-06-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-07-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-08-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-09-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-10-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-11-01"), loc), options),
Plot.lineY(sunlightMinutes(new Date("2022-12-01"), loc), options)
]
})