geoviews 1.12.0
holoviews 1.18.3
bokeh 3.4.1
cartopy 0.23.0
geos 3.12.1
shapely 2.0.4
With coastline.geoms objects in geostationary projection, paths display weird segments extending apparently infinitely towards the top-left corner.
Not sure this is due to geoviews per se though. I've tried various environments including with older versions of all these libraries and they now all seem to exhibit this behaviour while it used to be fine. I've made sure to delete local natural earth geometries cached by cartopy to fetch the latest (could it come from there?)
Note that it does not happen with a bare gv.feature.coastline, but only with its .geoms (which I use with resample_geometry).
import panel as pn
import geoviews as gv
import cartopy.crs as ccrs
gv.extension('bokeh')
plots = [gv.feature.coastline.geoms(res).options(projection=ccrs.Geostationary()) for res in ['110m', '50m', '10m']]
pn.Row(*plots)

No error is thrown in python or javascript.
geoviews 1.12.0
holoviews 1.18.3
bokeh 3.4.1
cartopy 0.23.0
geos 3.12.1
shapely 2.0.4
With
coastline.geomsobjects in geostationary projection, paths display weird segments extending apparently infinitely towards the top-left corner.Not sure this is due to geoviews per se though. I've tried various environments including with older versions of all these libraries and they now all seem to exhibit this behaviour while it used to be fine. I've made sure to delete local natural earth geometries cached by cartopy to fetch the latest (could it come from there?)
Note that it does not happen with a bare
gv.feature.coastline, but only with its.geoms(which I use withresample_geometry).No error is thrown in python or javascript.