Achim Randelhoff
Achim Randelhoff
Fixes #334. Enables legends for `FeatureArtists` by implementing a legend handler and registering it with matplotlib. This necessitated factoring out some of the code in the `FeatureArtists`' `draw` method to...
I'm starting to need this so had a go at #4837 (just blindly copying the bokeh example). It might be good to eventually include points at either the origin or...
Just a draft for what I know by the name of "Stickplots" (probably mostly because that's what a popular script for Matlab is called) - see https://github.com/pyviz/holoviews/issues/3486#issue-408802672. This is only...
``` import holoviews as hv from holoviews.operation.datashader import datashade hv.extension('bokeh') import numpy as np hv.HoloMap({t: datashade(hv.Points(np.random.rand(10, 10))) for t in np.arange(6, 18, 1)}) ``` (rightly) tells me I shouldn't nest...
Implements #381 I'm just putting this here for discussion. The PR would need some tests I imagine. Questions: 1. Should we validate the provided default? Currently, param is e.g. ok...
Same data, two different projections (PlateCarree and NorthPolarStereo). Note how the arrows are the same, just their locations changes. The obvious fix is to reproject before calculating magnitude and angle...
The following throws an error if legend labels are requested in the matplotlib backend: ``` import geoviews as gv, holoviews as hv hv.extension('matplotlib') r = hv.renderer('matplotlib') ``` ``` gv.Shape(LineString(([0, 0],...
When unpickling an object that contains a DataLink, the presence of a point with lon=0, lat=90 apparently makes the DataLinkCallback drop it and hence the DataLink fails with `Exception: DataLink...
The reason is that the array comparison in `DataLinkCallback` compares lat/lon with the projected coordinates. I guess this is part of a larger suite of problems that arise when dealing...
`p.outline_line_alpha` seems to be set to 0 in geoviews by default (using a renderer theme does not change this), but even when it is adjusted using a hook the outline...