Closed raphaelquast closed 6 months ago
Attention: Patch coverage is 74.39394%
with 169 lines
in your changes are missing coverage. Please review.
Project coverage is 75.29%. Comparing base (
034ce66
) to head (2aa99c9
). Report is 2 commits behind head on master.
Files | Patch % | Lines |
---|---|---|
eomaps/_maps_base.py | 77.49% | 122 Missing :warning: |
eomaps/_data_manager.py | 42.85% | 36 Missing :warning: |
eomaps/helpers.py | 16.66% | 5 Missing :warning: |
eomaps/_blit_manager.py | 57.14% | 3 Missing :warning: |
eomaps/colorbar.py | 85.71% | 1 Missing :warning: |
eomaps/layout_editor.py | 95.45% | 1 Missing :warning: |
eomaps/scalebar.py | 83.33% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
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