basemap
basemap copied to clipboard
addcyclic slicer IndexError
First of all, kudos to @molinav for keeping basemap alive. I still find it nicer than Cartopy.
Earlier python versions give a FutureWarning and newer python versions an IndexError on the output of the addcyclic function: version 1.3.4, line 5098: npsel.concatenate((a,a[slicer]),axis=axis)
I suppose this needs to change to: npsel.concatenate((a,a[tuple(slicer)]),axis=axis) ?