Conversation
|
Found 1 changed notebook. Review the changes at https://app.gitnotebooks.com/GenericMappingTools/pygmt-paper-figures/pull/34 |
There was a problem hiding this comment.
Pull request overview
This PR updates the Figure 3 PyGMT example notebook to stop sharing subplot axes, improving the readability of axis annotations (notably for the 3-D perspective panel) and simplifying the subplot configuration.
Changes:
- Removed
sharex="b"andsharey="l"from thefig.subplot(...)call so each panel manages its own axis annotations. - Adjusted subplot margins to accommodate the updated framing/annotations.
- Notebook metadata was updated (Python version string).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Actually, I was thinking a bit about the frame annotations of the 3-D plot when initially creating this figure. It's nice that shared axes are supported by PyGMT, but I agree it looks not optimal here. Maybe we should focus on the base maps here and show frame annotations for all maps frame annotations. But I am currently unsure what is better. What do the others think @michaelgrund, @weiji14? |
In this PR, I've removed
sharex="b", sharey="l"settings from Figure 3. The main reasons are:@yvonnefroehlich What do you think?