We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I often use ax.gridlines() to add coords info,but I can't make ticks shown like the figure below.
ax.gridlines()
Is it possible to adjust the following code to add axis ticks?
import cartopy.crs as ccrs import matplotlib.pyplot as plt fig,ax = plt.subplots(1,1,subplot_kw={'projection':ccrs.PlateCarree()}) ax.coastlines() ax.set_global() ax.stock_img() ax.gridlines(draw_labels=True)
The text was updated successfully, but these errors were encountered:
For rectangular projections, you can go ahead and use Matplotlib’s x- and y-ticks instead of the Gridliner. https://scitools.org.uk/cartopy/docs/latest/gallery/gridlines_and_labels/tick_labels.html#sphx-glr-gallery-gridlines-and-labels-tick-labels-py
Sorry, something went wrong.
@rcomer Thanks.It would be nice if Gridliner had improvements in the future in terms of the ticker being displayed .
No branches or pull requests
I often use
ax.gridlines()
to add coords info,but I can't make ticks shown like the figure below.Is it possible to adjust the following code to add axis ticks?
The text was updated successfully, but these errors were encountered: