How can i remove that black frame of the map? And is it possible to change the background color within that frame from white to transparent?
import cartopy.crs as ccrs
import cartopy.io.shapereader as shpreader
import matplotlib.pyplot as plt
fname = 'germany.shp'
shapes = list(shpreader.Reader(fname).geometries())
ax = plt.axes(projection=ccrs.NorthPolarStereo(central_longitude=10.0))
ax.add_geometries(shapes, ccrs.PlateCarree(), edgecolor='none', alpha=1)
ax.set_facecolor((1.0, 0.47, 0.42))
ax.set_extent([6, 15, 47, 55])
plt.savefig("map.png", format='png', dpi=400, quality=95)
plt.show()
