EOmaps icon indicating copy to clipboard operation
EOmaps copied to clipboard

A library to create interactive maps of geographical datasets

Results 37 EOmaps issues
Sort by recently updated
recently updated
newest added

This needs to be addressed to ensure (future) compatibility with `matplotlib >= 3.10` ``` /home/runner/work/EOmaps/EOmaps/eomaps/shapes.py:51: MatplotlibDeprecationWarning: The collections attribute was deprecated in Matplotlib 3.8 and will be removed two minor...

Deprecations

**Describe the bug** When using the Maps.new_inset_map instance, anything manually added to the axis via the `m.ax` object is not rendered inside the inset. The only possible things to be...

bug
fixed in next version
temporary fix available

A first bugfix release for v8.2 ## 🔨 fixes - ❗fix identification of default shape based on dataset size - ❗fix issues with unmanaged artists on inset-maps - explicitly check...

**Describe the bug** Cached layers must be re-drawn if a new colorbar is added that results in a change of the axes-sizes. **To Reproduce** ```python from eomaps import Maps m...

bug
fixed in next version
temporary fix available

**Describe the bug** Using `m.add_colorbar(inherit_position=False)` only works if a colorbar already exists on the associated layer. **To Reproduce** ``` m = Maps() m.set_data([1,2,3], [1,2,3], [1,2,3]) m.plot_map() m2.add_colorbar() m2 = m.new_layer("my_layer",...

bug
fixed in next version

PR to improve handling of lazy-loaded Datasets with datashader. - At the moment, this PR only handles 2D datasets plotted with `m.set_shape.shade_raster()` #### TODOs - [x] check progress of https://github.com/holoviz/datashader/pull/1345

## 🔨 Fixes - fix issues with "inherit_position=False" for colorbars - make sure cached layers are re-drawn if a colorbar changes the axes-size - fix treatment of assigned "search_radius" for...