Andrea Cuttone
Andrea Cuttone
you should be able to invoke the command twice and the layers should stack e.g. geoplotlib.dot(data1) geoplotlib.dot(data2)
Hi what does the `bus.csv` file contain? Is it [this one from the examples](https://github.com/andrea-cuttone/geoplotlib/blob/master/examples/data/bus.csv) ?
Unfortunately you cannot embed a live pyglet canvas, but you can inline a screenshot using `geoplotlib.inline()` in a cell within your notebook.
I think it is an issue with the `encode` method which was discontinued in python 3. I will try to take a look.
Hi pylab is installed as part of matplotlib. The readme mentions that matplotlib is an optional requirement for the colormaps, but maybe it should be stated as mandatory. The reason...
Thanks for your feedback. I would like to leave matplotlib as optional for now, as geoplotlib can indeed work without it if you manually specify the colors.
convexhull does require at least 3 points Try modifying kmeans.py for l in set(labels): self.painter.set_color(self.cmap[l]) if len(x[labels == l]) >= 3: self.painter.convexhull(x[labels == l], y[labels == l]) self.painter.points(x[labels == l],...
Hi Erika did you install geoplotlib with pip as in the installation guide?
Hi text can be added by using ui_manager.info("hello world") See in examples/taxi.py. There is currently no support for legends. If you wish to add it, I would start by looking...
Hi can you share your code?