Error when overlaying hv.Tiles
with a gv.Points
element that has wrong xlim/ylim defined, with Matplotlib
#540
Labels
hv.Tiles
with a gv.Points
element that has wrong xlim/ylim defined, with Matplotlib
#540
This snippet sets the
xlim
andylim
opts of agv.Points
element to values that make no sense, and tries to overlay this element to anhv.Tiles
element. Even if it's expected that there's some kind of error, the one I got with the Matplotlib backend felt way too cryptic, so I'm opening an issue to see if there would be a way to catch the error and improve the error message.Note that here tile doesn't refer to a geo-tile, it's related to PIL.
Removing
.opts(xlim=(20000000, 40000000), ylim=(20000000, 400000000))
fixes the code, i.e. there's no more error (but of course the tiles are not plotted, since there's no matplotlib implementation for holoviewsTiles
elements).The text was updated successfully, but these errors were encountered: