Plot.plot({width:1200,height:1200,
projection: {type: "orthographic",rotate: [80, -34], domain:circle},
r: {transform: (d) => Math.pow(10, d)},
style: "overflow: visible;",
marks: [
Plot.geo(combined, {fill: d => color(d.properties.Income), fillOpacity:1,
tip: true},
),
Plot.geo(Flood, {fill: "blue", fillOpacity: 0.7, type:"md"}),
Plot.geo(archivedParksProperties , {fill: "green", stroke:"green", fillOpacity: 0.5, type:"md",
tip: true}),
Plot.dot(dgi.features, {x: (d) => d.geometry.coordinates[0], y: (d) => d.geometry.coordinates[1],
r: .7,
stroke: "cyan",
fill: "cyan",
fillOpacity: 0.1,
channels: { asset_type: (d) => d.properties.asset_type },
tip: true})
]
})