Geopandas world map in Polar Stereographic projection with coloured oceans
问题 Adding a further requirement to this question, I also need to have the oceans in blue (or any other colour). For the 'PlateCarree' projection I can simply do this crs = ccrs.PlateCarree() crs_proj4 = crs.proj4_init world = gpd.read_file(gpd.datasets.get_path("naturalearth_lowres")) w = world.to_crs(crs_proj4) g = w.plot(facecolor='sandybrown', edgecolor='black') And now adding the ocean colour g.set_facecolor('#A8C5DD') If I now want to use a polar stereographic peojection ccrs