https://d3js.org/d3-geo/projection#projection_angle <img src="https://github.com/user-attachments/assets/a80f8347-f1b6-4d03-9034-63c82949230f" width=400> ```js Plot.plot({ projection: { type: ({ width, height }) => d3.geoEqualEarth().angle(11).fitSize([width, height], { type: "Sphere" }) }, marks: [Plot.graticule(), Plot.sphere()] }) ``` should be available as ```js Plot.plot({ projection: { type: "equal-earth", angle: 11 }, marks: [Plot.graticule(), Plot.sphere()] }) ```