Open
Description
Overall, I want to keep major ticks and close minor ticks for lon and lat.
Bug: Keep major ticks and close minor ticks, producing the following result. lat ticks and labels are correct, but the lon ticks are not shown?
import ultraplot as uplt
import cartopy.crs as ccrs
uplt.rc.update({
'font.size': 12,
'tick.minor': False,
})
fig, ax = uplt.subplots(proj=ccrs.PlateCarree(140))
ax.coastlines("110m")
ax.format(
grid=False,
lonlim=(80, 200),
latlim=(-60, 60),
lonlocator=[80, 140, 200],
latlocator=[-60, 0, 60],
labels=True,
ticklen=1,
)