From 6290239ee6ebf580e530a729bd73e908b6295885 Mon Sep 17 00:00:00 2001 From: Rajeev Jain Date: Mon, 18 May 2026 14:45:52 -0500 Subject: [PATCH] Fix broken healpix notebook was fragile because it relied on Bokeh as the implicit backend for a static projected GeoViews plot. --- docs/user-guide/healpix.ipynb | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/docs/user-guide/healpix.ipynb b/docs/user-guide/healpix.ipynb index ea1a3e94a..c96f6c9b1 100644 --- a/docs/user-guide/healpix.ipynb +++ b/docs/user-guide/healpix.ipynb @@ -147,13 +147,22 @@ "source": [ "(\n", " ux.Grid.from_healpix(zoom=2).plot(\n", - " periodic_elements=\"split\", projection=ccrs.Orthographic(), title=\"zoom=2\"\n", + " periodic_elements=\"split\",\n", + " projection=ccrs.Orthographic(),\n", + " title=\"zoom=2\",\n", + " backend=\"matplotlib\",\n", " )\n", " + ux.Grid.from_healpix(zoom=3).plot(\n", - " periodic_elements=\"split\", projection=ccrs.Orthographic(), title=\"zoom=3\"\n", + " periodic_elements=\"split\",\n", + " projection=ccrs.Orthographic(),\n", + " title=\"zoom=3\",\n", + " backend=\"matplotlib\",\n", " )\n", " + ux.Grid.from_healpix(zoom=4).plot(\n", - " periodic_elements=\"split\", projection=ccrs.Orthographic(), title=\"zoom=4\"\n", + " periodic_elements=\"split\",\n", + " projection=ccrs.Orthographic(),\n", + " title=\"zoom=4\",\n", + " backend=\"matplotlib\",\n", " )\n", ").cols(1)" ]