In [2]:
import cartopy.crs as ccrs
map_proj = ccrs.PlateCarree()
ax = plt.axes(projection=map_proj)
ax.stock_img()
ax.set_extent([-150, 60, -25, 60])



In [ ]: