Home > Enterprise >  How to deal well with normal and cartopy projection on the same figure?
How to deal well with normal and cartopy projection on the same figure?

Time:05-28

I want to produce this kind of figure, taken from Sallee et al. (2021) directly from Python if it is possible :

Figure goal

There is a Cartopy projection cartopy.crs.Robinson(central_longitude=0, globe=None) in the main subplot and at the right of it something close to a density function (over the latitudes) of my value on the Cartopy projection. Managing the labels with Robinson projection is not convenient for me, whereas with cartopy.crs.PlateCarree(central_longitude=0.0, globe=None) I did not have any issues labelling axis.

This is the most related topics (enter image description here

  • Related