Plot.plot({
grid: true,
caption: "FPL @ 3700MHz",
x: { nice: true, label: "Distane in m", tickFormat: (d) => d * 1000 },
y: { nice: true, label: "PathLoss [dB]" },
marks: [
Plot.line(fpl, { x: dist, y: (d) => FPL(d, 3600) }),
Plot.line(fpl, { x: dist, y: (d) => FPL(d, 3700), stroke: "red" })
]
})