{
const rasterWidth = 135;
const rasterHeight = 231;
const ratio = rasterWidth / rasterHeight;
const rasterPlot = Plot.plot({
color: {
scheme: 'BuGn',
legend: true,
},
width: 300,
aspectRatio: 1,
marks: [
Plot.raster(data, {
width: 135,
height: 231,
x1: 93.835,
x2: 108.82,
y1: 34.053,
y2: 8.411999999999999,
interpolate: "none",
}),
]
});
return rasterPlot;
}