Plot.plot({width: 3000,height:3000,
projection: {type: "orthographic",rotate: [80, -34], domain:circle},
r: {transform: (d) => Math.pow(10, d)},
style: "overflow: visible;",
marks: [
Plot.geo(combinedHeatIndex,{fill: d => color2(d.properties.HVImedquin), fillOpacity:1,
}),
Plot.geo(combined, {fill: d => color(d.properties.Income), fillOpacity:0.5,
}),
Plot.geo(archivedParksProperties ,
{fill: "green",
stroke:"green",
fillOpacity: 1,
type:"md",
}),
Plot.dot(dgi.features, {x: (d) => d.geometry.coordinates[0], y: (d) => d.geometry.coordinates[1],
r: 0.6,
stroke: "cyan",
fill: "none",
fillOpacity: 0.25,
}),
Plot.geo(Flood, {
fill: "blue",
fillOpacity: 0.6,
type: "md" }),
Plot.geo(censusTractsTabular_20231107 ,
{fill: "none",
stroke:"black","strokeWidth":0.25,
fillOpacity: 0.55,
type:"md"}),
]
})