How to do axis label sharing with geographic axis?
import ultraplot as pplt
fig, axs = pplt.subplots(ncols=2, nrows=2, projection='cyl', refwidth='5cm', share='all')
axs.format(lonlim=(0, 60), latlim=(-20, 20),
lonlines=15, latlines=10, lonlabels='both', latlabels='both')
Like the code above, share='all' doesn't seems work.
