-
Notifications
You must be signed in to change notification settings - Fork 25
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
merge for v8.2 #239
Merged
Merged
merge for v8.2 #239
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #239 +/- ##
=======================================
Coverage 75.29% 75.29%
=======================================
Files 26 27 +1
Lines 11754 11817 +63
=======================================
+ Hits 8850 8898 +48
- Misses 2904 2919 +15 ☔ View full report in Codecov by Sentry. |
(use first picked axes as anchor in case multiple axes are moved)
moved methods: _get_coll, _convert_1d_to_2d, _handle_explicit_colors, _sel_c_transp
Refactoring of Maps class
- use custom size also on first plot_map call if set - flush events to ensure sizes are properly updated - don't flush events on resize
test image comparison in unittests
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
A new minor release with some fixes, many improvements to the internals and a few new features!
🌳 New
m.add_colorbar(layer=..)
to override the layer at which the colorbar is plottedm.set_shade_dpi(...)
to override the dpi used by shade-shapes.(Useful to fix data aggregation resolution for high-dpi exports or to adjust resolution to better suit data density)
🌦️ Changes
LayoutEditor
now snaps to all edges of the axes(Useful in case the axis-size is not a multiple of the grid-spacing)
p : "toggle pan/zoom tool"
is now active again🌩️ Internals (no effects on the public API)
Maps
class has been refactored (Maps
andMapsBase
) to make the code more accessible and easier to handle.🔨 Fixes