> May I add `LambertAzimuthalEqualArea` to the list or reproducers with current master + matplotlib2 ```python proj = cartopy.crs.LambertAzimuthalEqualArea(central_latitude=45, central_longitude=-100) ax = plt.axes(projection=proj) ax.add_feature(cartopy.feature.OCEAN) ax.coastlines() ax.set_extent([-140, -70, 20, 60]) ```  _Originally posted by @akrherz in https://github.com/SciTools/cartopy/issues/803#issuecomment-333909742_