I think after 77f2b71, this issue arose.
Previously, one could do something like:
importnumpyasnpimportproplotasplot%importcartopy.crsasccrsdata=np.random.rand(180, 360)
lats=np.linspace(-89.5, 89.5, 180)
lons=np.linspace(-179.5, 179.5, 360)
f, ax=plot.subplots(proj='robin')
ax.pcolormesh(lons, lats, data)
and you'd get the map. Now it's showing up blank and requires ax.pcolormesh(lons, lats, data, transform=ccrs.PlateCarree()). Maybe minor but a nice thing to not have to worry about with proplot.
I think after 77f2b71, this issue arose.
Previously, one could do something like:
and you'd get the map. Now it's showing up blank and requires
ax.pcolormesh(lons, lats, data, transform=ccrs.PlateCarree()). Maybe minor but a nice thing to not have to worry about withproplot.