We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changing the parameters of sharex, sharey do not work for geographic plot. Thanks always.
import proplot as plot fig, axs = plot.subplots(ncols=2, nrows=2, proj='cyl', share=3) axs.format(coast=True, labels=True)
Actual behavior: [What actually happened]
import numpy as np import matplotlib.pyplot as plt import cartopy.crs as ccrs from cartopy.mpl.ticker import LongitudeFormatter, LatitudeFormatter fig, axes = plt.subplots(2, 2, sharex=True, sharey=True, subplot_kw=dict(projection=ccrs.PlateCarree())) xticks = np.linspace(-180, 180, 7) yticks = np.linspace(-90, 90, 7) for ax in axes.flat: ax.coastlines() ax.gridlines(xlocs=xticks, ylocs=yticks, linestyle='--', alpha=0.5) ax.set_xticks(xticks, crs=ccrs.PlateCarree()) ax.set_yticks(yticks, crs=ccrs.PlateCarree()) ax.xaxis.set_major_formatter(LongitudeFormatter(zero_direction_label=True)) ax.yaxis.set_major_formatter(LatitudeFormatter())
0.6.4
The text was updated successfully, but these errors were encountered:
Duplicate of: #79, #178 (see also #183)
Sorry, something went wrong.
No branches or pull requests
Description
Changing the parameters of sharex, sharey do not work for geographic plot.
Thanks always.
Steps to reproduce
Actual behavior: [What actually happened]

Equivalent steps in matplotlib
Proplot version
0.6.4
The text was updated successfully, but these errors were encountered: