You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, panel does not accept the keyword proj to plot geographic plots.
I think it will be a useful feature when you want to show a small map on top of a hovmoller diagram. I can manually make a similar plot as follows, but it's a bit tedious and abclabels will be shown on all axes.
Unfortunately I don't think I should implement this because it would involve a lot of special handling that would only benefit some pretty unusual use cases. The panel_axes infrastructure is built around the assumption that panels represent some reduced dimensionality of the main subplot data, so it usually doesn't make sense to have a map projection panel.
I think what would make more sense in your case might be to make the Hovmoller plot the "panel" and make the projection the main subplot. You can make panels as large as you want -- nothing stopping you from having a narrow main subplot and a much larger panel. Here's an example (development version is needed to pass format keyword args to panel()):
Also I realize one limitation of this is that you can't put colorbars along (e.g.) the left or right side of the Hovmoller plot, since it's a "panel".... but I think the generalization proposed in #329 will add support for this.
Description
Currently,
panel
does not accept the keywordproj
to plot geographic plots.I think it will be a useful feature when you want to show a small map on top of a hovmoller diagram. I can manually make a similar plot as follows, but it's a bit tedious and
abclabels
will be shown on all axes.The text was updated successfully, but these errors were encountered: