Open Fil opened 5 days ago
https://d3js.org/d3-geo/projection#projection_angle
Plot.plot({ projection: { type: ({ width, height }) => d3.geoEqualEarth().angle(11).fitSize([width, height], { type: "Sphere" }) }, marks: [Plot.graticule(), Plot.sphere()] })
should be available as
Plot.plot({ projection: { type: "equal-earth", angle: 11 }, marks: [Plot.graticule(), Plot.sphere()] })
https://d3js.org/d3-geo/projection#projection_angle
should be available as