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(zips_combined, {fill: d => color(d.properties.PERCENT_FEMALE), fillOpacity: 0.2}),
Plot.geo(subwayLines, {fill: 'none', stroke: 'black', type:"md"}),
Plot.geo(parkingLot, {fill: d => color2(d.properties.shape_area), stroke: 'none', type:"md"}),
Plot.sphere(),
Plot.dot(dgi.features, {x: (d) => d.geometry.coordinates[0], y: (d) => d.geometry.coordinates[1], r: .3, stroke: "red", fill: "red", fillOpacity: 0.2})
]
})