From 8adcfab2a6e6caaa94be98bdd246f861040f71db Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Sat, 13 Mar 2021 15:20:58 +0100 Subject: [PATCH] Add CHANGELOG for 1.9.0 (#492) * Add CHANGELOG for 1.9.0 * Small bug fix --- CHANGELOG.md | 35 ++++++++++++++++++++++ doc/releases.rst | 35 ++++++++++++++++++++++ examples/user_guide/Resampling_Grids.ipynb | 2 +- 3 files changed, 71 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5d89bd4..d1e88bbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,38 @@ +Version 1.9.0 +============= + +This GeoViews release primarily provides compatibility with the latest releases of Cartopy (0.18), Bokeh (2.3), HoloViews (1.14.x) and fixes a number of other issues. + +Features: + +- Add utility to download tile RGB ([#458](https://github.com/holoviz/geoviews/pull/458)) + +Compatibility: + +- Compatibility with Bokeh 2.3 ([#487](https://github.com/holoviz/geoviews/pull/487)) +- Compatibility for regridding with latest xesmf ([#488](https://github.com/holoviz/geoviews/pull/488)) +- Compatibility with HoloViews 1.14.x for resampling operation and stream callback ([#488](https://github.com/holoviz/geoviews/pull/488)) +- Compatibility with latest Cartopy 0.18 ([#488](https://github.com/holoviz/geoviews/pull/488)) + +Bug fixes: + +- Allow using geopandas interface without using geometry column ([#464](https://github.com/holoviz/geoviews/pull/464)) +- Fix Hover tooltip projection ([#490](https://github.com/holoviz/geoviews/pull/490)) +- Use the set geometry column on Geopandas DataFrames ([#489](https://github.com/holoviz/geoviews/pull/489)) +- Fix xesmf regridding file_pattern parameter ([#491](https://github.com/holoviz/geoviews/pull/491)) + + +Version 1.8.2 +============= + +Minor bugfix release. Includes contributions from: @philippjfr + +Bug fixes and minor improvements: + +- Bump geoviews.js version and bokeh requirements ([#473](https://github.com/holoviz/geoviews/pull/473)) +- Handle proj4.js API change in Hover formatter ([#472](https://github.com/holoviz/geoviews/pull/472)) + + Version 1.8.1 ============= diff --git a/doc/releases.rst b/doc/releases.rst index 1843c4d6..288ab077 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -1,6 +1,41 @@ Releases ======== +Version 1.9.0 +------------- + +This GeoViews release primarily provides compatibility with the latest releases of Cartopy (0.18), Bokeh (2.3), HoloViews (1.14.x) and fixes a number of other issues. + +Features: + +- Add utility to download tile RGB (`#458 `_) + +Compatibility: + +- Compatibility with Bokeh 2.3 (`#487 `_) +- Compatibility for regridding with latest xesmf (`#488 `_) +- Compatibility with HoloViews 1.14.x for resampling operation and stream callback (`#488 `_) +- Compatibility with latest Cartopy 0.18 (`#488 `_) + +Bug fixes: + +- Allow using geopandas interface without using geometry column (`#464 `_) +- Fix Hover tooltip projection (`#490 `_) +- Use the set geometry column on Geopandas DataFrames (`#489 `_) +- Fix xesmf regridding file_pattern parameter (`#491 `_) + + +Version 1.8.2 +------------- + +Minor bugfix release. Includes contributions from: @philippjfr + +Bug fixes and minor improvements: + +- Bump geoviews.js version and bokeh requirements (`#473 `_) +- Handle proj4.js API change in Hover formatter (`#472 `_) + + Version 1.8.1 ------------- diff --git a/examples/user_guide/Resampling_Grids.ipynb b/examples/user_guide/Resampling_Grids.ipynb index f3cb1c29..1c02076e 100644 --- a/examples/user_guide/Resampling_Grids.ipynb +++ b/examples/user_guide/Resampling_Grids.ipynb @@ -336,7 +336,7 @@ "outputs": [], "source": [ "from holoviews.operation.datashader import rasterize\n", - "rasterize(quadmeshes, precompute=True, aggregator=dsh.mean('Tair')) * gv.feature.coastline" + "rasterize(gv.project(quadmeshes), precompute=True, aggregator=dsh.mean('Tair')) * gv.feature.coastline" ] }, {