From 71c7234b22343d8daca638caa9f1c12ab4b3d904 Mon Sep 17 00:00:00 2001 From: maximlt Date: Thu, 26 Sep 2024 19:28:24 +0200 Subject: [PATCH 1/4] update annoucement --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index b662487d0..4e490f40b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -47,7 +47,7 @@ }, ], 'pygment_dark_style': 'material', - 'announcement': "hvPlot 0.10 has just been released! Checkout the blog post and support hvPlot by giving it a 🌟 on Github.", + 'announcement': "hvPlot 0.11 has just been released! Checkout the blog post and support hvPlot by giving it a 🌟 on Github.", } ) From c31f8b4a7875dd860ae1cf7f389692a162f3efd6 Mon Sep 17 00:00:00 2001 From: maximlt Date: Thu, 26 Sep 2024 19:28:35 +0200 Subject: [PATCH 2/4] update version in geo guide --- doc/user_guide/Geographic_Data.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/user_guide/Geographic_Data.ipynb b/doc/user_guide/Geographic_Data.ipynb index 7a3a8c70a..d34ebe5b9 100644 --- a/doc/user_guide/Geographic_Data.ipynb +++ b/doc/user_guide/Geographic_Data.ipynb @@ -80,9 +80,9 @@ "source": [ "We'll first start by displaying the airports **without GeoViews** with tiles by setting `tiles=True`. \n", "\n", - "Under the hood, hvPlot projects lat/lon to easting/northing (EPSG:4326 to EPSG:3857) coordinates without additional package dependencies if it detects that the values falls within expected lat/lon ranges.\n", + "Under the hood, hvPlot projects lat/lon to easting/northing ([EPSG:4326](https://epsg.io/4326) to [EPSG:3857](https://epsg.io/3857)) coordinates without additional package dependencies if it detects that the values falls within expected lat/lon ranges.\n", "\n", - "Note, **this feature is only available after `hvplot>0.10.0`**; older versions, `hvplot<=0.10.0`, require manual projection (see below)." + "Note, **this feature is only available after `hvplot>=0.11.0`**; older versions, `hvplot<0.11.0`, require manual projection (see below)." ] }, { From de90b884049bdf0e125409364c442d7b6d75b1c3 Mon Sep 17 00:00:00 2001 From: maximlt Date: Thu, 26 Sep 2024 19:40:26 +0200 Subject: [PATCH 3/4] enable html_image MySt extention --- doc/conf.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 4e490f40b..dc9efe3a6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -62,7 +62,13 @@ 'sphinxext.rediraffe', ] -myst_enable_extensions = ['colon_fence'] +myst_enable_extensions = [ + # To also use ::: delimiters to denote directives, instead of ```. + 'colon_fence', + # MySt-Parser will attempt to convert any isolated img tags (i.e. not + # wrapped in any other HTML) to the internal representation used in sphinx. + 'html_image', +] nbsite_gallery_conf = { 'github_org': 'holoviz', From 316685ce8bd58618b7a1c725f0406d98b3f4513c Mon Sep 17 00:00:00 2001 From: maximlt Date: Fri, 27 Sep 2024 09:20:56 +0200 Subject: [PATCH 4/4] fix image links --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4edd8bb14..d2bf28a03 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The API is based on the familiar Pandas `.plot` API and the innovative `.interactive` API. - + ## hvPlot works with the tools you know and love @@ -28,7 +28,7 @@ hvPlot - supports the plotting backends [Bokeh](https://docs.bokeh.org/en/latest/), [Matplotlib](https://matplotlib.org/) and [Plotly](https://plotly.com/python/). - exposes the powerful tools from the [HoloViz](https://holoviz.org/) ecosystem in a familiar and convenient API. -[](https://holoviz.org/) +[](https://holoviz.org/) hvPlot is **the simplest way to benefit from the [HoloViz](https://holoviz.org/) ecosystem for data exploration**. @@ -87,7 +87,7 @@ Use the `.hvplot` API as you would use the Pandas or Xarray `.plot` API: df.hvplot() ``` -[](https://hvplot.holoviz.org/user_guide/index.html) +[](https://hvplot.holoviz.org/user_guide/index.html) ### Interactive data apps @@ -101,7 +101,7 @@ pn.extension() df.interactive(width=600).head(n=pn.widgets.IntSlider(start=1, end=5, value=3)) ``` -[](https://hvplot.holoviz.org/user_guide/Interactive.html) +[](https://hvplot.holoviz.org/user_guide/Interactive.html) ### How to find documentation from your notebook or editor