-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
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
Add map scales, compasses, and missing basemap features #36
Comments
depending on your goals, contextily may also be worth considering here |
I would suggest to implement it directly within Cartopy if it is already in Basemap. |
I agree that these features belong in cartopy, not proplot. Also, I think all of these features (especially For adding different backgrounds, the examples on this page or the |
ProPlot should integrate with existing complex basemap features. For power users, this can be done by calling methods on
ax.projection
(which is the Basemap instance associated with the axes). But if we wanted to make things easier for users (in the spirit of ProPlot) we could add options toProjectionAxes._format_apply
as follows:Cartopy is missing several of these features, but distance scales could be implemented manually as discussed in this stackoverflow thread and this cartopy Github issue. This could be added to ProPlot
ProjectionAxes
, or to the cartopy project directly.It would also be really interesting if we could add compasses to plots that show the Northward direction. This is not available in basemap or cartopy.
I'm not really motivated to address these proposals anytime soon but if someone else is, I think this is very doable for new contributors.
The text was updated successfully, but these errors were encountered: