Skip to content
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

Allow ticks for geoaxes #126

Merged
merged 1 commit into from
Mar 20, 2025
Merged

Conversation

cvanelteren
Copy link
Contributor

@cvanelteren cvanelteren commented Mar 16, 2025

This PR addresses #125. It introduces a test that tests specifically three use cases.
It modifies the code to allow for showing ticks in geoaxis. Currently, the tickers are completely controlled through the backend with small modifications to ensure high quality plots. This PR makes it to add ticks. It does this by manually adding a ticker when new keywords lontick or lattick is given which can take a bool or numeric as an input. When set to None the option is effectively ignored.

The defaults should generate a sensible plot with lat and long lines, but without ticks. Then it specifically tests whether leaving the ticks on on one axis does not hamper the other axes.

image

Edit the parameters added would create a 2^4 test plots in terms of the combinations; I opted for specific tests that are a bit more complex but are quicker to generate while still testing all the properties.

@cvanelteren cvanelteren marked this pull request as draft March 16, 2025 14:53
@cvanelteren cvanelteren requested a review from beckermr March 16, 2025 15:01
@cvanelteren cvanelteren marked this pull request as ready for review March 16, 2025 15:01
@cvanelteren
Copy link
Contributor Author

Will fail on added test.

Copy link

codecov bot commented Mar 16, 2025

Codecov Report

Attention: Patch coverage is 85.88235% with 12 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
ultraplot/axes/geo.py 81.81% 7 Missing and 5 partials ⚠️

📢 Thoughts on this report? Let us know!

@cvanelteren
Copy link
Contributor Author

cvanelteren commented Mar 16, 2025

Note to self, we may want to add this feature to the docs. Done

@cvanelteren
Copy link
Contributor Author

Removed some scaling around, but should be good now @beckermr

@beckermr beckermr self-assigned this Mar 17, 2025
Copy link
Collaborator

@beckermr beckermr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's wait until we resolve the discussion of how to detect projections that are "flat." An allow list won't scale.

@cvanelteren
Copy link
Contributor Author

We can do the names as fallback and check with direct computation. I will draft something up.

@cvanelteren
Copy link
Contributor Author

The fallback is now the names while the projection is tested if the slopes are 90 deg.

Copy link
Collaborator

@beckermr beckermr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See my comments above.

@beckermr beckermr removed their assignment Mar 18, 2025
@cvanelteren
Copy link
Contributor Author

todo: rm boolean logic and add unit conversion if string.

@cvanelteren
Copy link
Contributor Author

Looks good now! @beckermr. I will rebase if approved.

@cvanelteren
Copy link
Contributor Author

cvanelteren commented Mar 19, 2025

It is a little tricky to test the untested and partial parts raised by codecov. The main issue is that the code itself does not allow to objects in such a way to these high level function that would create the problems. We could either provide tests for the low level functions, leave them as is, or remove the additional logic that would safeguard against edge cases. I am leaning towards the second option.

Edit: to clarify. The function filter wrong settings out before it can reach a point where it will cause issues. For example, I can create a custom projection without a known name and with a custom projection but it would then be recreated by the functions on format.

@cvanelteren cvanelteren requested a review from beckermr March 19, 2025 09:31
@cvanelteren
Copy link
Contributor Author

To add fuel to the fire I also just noticed that there is _proj_non_rectangular which also performs a name check.

I can attempt to modify the projection functions directly using a cartopy class, but the name property is read only -- making testing the latter harder. Basemap has similar saveguards for the names.

Copy link
Collaborator

@beckermr beckermr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few more items.

@cvanelteren cvanelteren merged commit 2085c2f into Ultraplot:main Mar 20, 2025
8 of 10 checks passed
@cvanelteren cvanelteren deleted the null-ticker-geo branch March 20, 2025 07:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants