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(nyc_zips, {fill: "currentColor", fillOpacity: 0.2, 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})
]
})