I’m trying to make a equal-area map over a few ROIs with minimal local distortion. It looks like Lambert azimuthal should work, but the result always shows the entire globe, not just the ROI. Here’s an example taken from the tutorial on regions, just changing the projection to A15/41/15c. I’d like the map to show only what is inside the box. Do you have any suggestion?
fig.coast(
region="10/20/35/45",
projection="A15/41/15c",
land="lightgray",
water="white",
borders="1/0.5p",
shorelines="1/0.5p",
frame="ag",
)
fig.plot(x=[10,20,20,10,10], y=[35,35,45,45,35], pen="2p,black")
fig.show()
fig = pygmt.Figure()


