Open pbartusch opened 2 years ago
Hey! I'm the author of the blog 👋 ! Unfortunately, I'm facing the same issue and I have not been able to resolve it. Any tip or hint is highly appreciated 😄 !
Hey, any update on this? I'm facing the same issue here.
I should preface by saying that I am not software developer, just someone who thought I could use this package in my work. I don't know if this will be helpful to anyone, but I got around this and was able to make a plot by first commenting out the offset_order line in mplexporter/exporter.py, and then in the following line setting the offset_order argument equal to False.
` # offset_order = offset_dict[collection.get_offset_position()]
self.renderer.draw_path_collection(paths=processed_paths,
path_coordinates=path_coords,
path_transforms=path_transforms,
offsets=offsets,
offset_coordinates=offset_coords,
offset_order=False,
styles=styles,
mplobj=collection)
` I'm sure this breaks some other functionality (the points I'm scattering no longer maintain the same order as in the matplotlib scatter), but at least I could plot points on a map.
Hi,
I am currently reproducing code for plotting maps of Germany (https://juanitorduz.github.io/germany_plots/).
I try to get the interactive map running:
(one of the last steps of the tutorial)
I already fixed the
_gridOnMajor
bug like suggested here: https://github.com/jwass/mplleaflet/issues/80 (thanks to @22tommibaer01).Unfortunately, I ran into another bug with the following error log:
This seems to be related to the
plotly
issue described here: https://github.com/plotly/plotly.py/issues/3624, but I have no idea how to fix this.My environment looks like this:
Help is much appreciated. Thanks!