Geoviews

Latest version: v1.12.0

Safety actively analyzes 631274 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 6

1.6.4

=============

Minor bugfix release. Includes contributions from philippjfr, ahuang11, zassa, and ceball

Bug fixes and minor improvements:

- Ensure that gridline labels are only drawn once ([364](https://github.com/holoviz/geoviews/pull/364))
- Compatibility with latest HoloViews data interface ([363](https://github.com/holoviz/geoviews/pull/363))
- Add grid labels ([351](https://github.com/holoviz/geoviews/pull/351))
- Hardcode the OSM tile source to https ([333](https://github.com/holoviz/geoviews/pull/333))
- Fix hover formatting for Mercator coordinates ([358](https://github.com/holoviz/geoviews/pull/358))

1.6.3

=============

Minor release, mostly bugfixes. Includes contributions from philippjfr, ahuang11, and rsignell-usgs.

New features:
- Add geo features for US states ([312](https://github.com/holoviz/geoviews/pull/312))
- Add ESRI Ocean tile layers ([320](https://github.com/holoviz/geoviews/pull/320))

Bug fixes and minor improvements:
- Add dtype methods to geometry interfaces ([345](https://github.com/holoviz/geoviews/pull/345))
- Ensure that Line Shape is not filled in matplotlib ([326](https://github.com/holoviz/geoviews/pull/326))
- Avoid zooming in beyond tile/axis resolution ([325](https://github.com/holoviz/geoviews/pull/325))
- Fix gridlines for gv matplotlib overlay ([308](https://github.com/holoviz/geoviews/pull/308))

1.6.2

=============

Includes contributions from ahuang11 (unlimit vdims) and philippjfr.

Bug fixes and minor improvements:
- Unlimit the vdims for various elements ([253](https://github.com/holoviz/geoviews/pull/253))
- Improve handling of geopandas and empty geometries ([278](https://github.com/holoviz/geoviews/pull/278))
- Updated opts syntax in gallery examples ([277](https://github.com/holoviz/geoviews/pull/277))
- Fixed bugs projecting `Graphs` ([276](https://github.com/holoviz/geoviews/pull/276))
- Ensure backend is initialized on import ([275](https://github.com/holoviz/geoviews/pull/275))
- Added `__call__` method to tile sources, to restore constructor-like behavior from previous versions ([274](https://github.com/holoviz/geoviews/pull/274))

1.6.0

=============

This is a major release with a number of important enhancements and bug fixes:

Features:

- Complete overhaul of geometry handling including support for geometry with holes and geometry dictionary interface ([244](https://github.com/holoviz/geoviews/pull/244), #249](https://github.com/holoviz/geoviews/pull/249))
- Support for holoviews FreehandDraw stream ([219](https://github.com/holoviz/geoviews/pull/219))
- Add `gv.load_tiff` and `gv.RGB.load_tiff` helpers ([221](https://github.com/holoviz/geoviews/pull/221), #233](https://github.com/holoviz/geoviews/pull/233))
- Added support for holoviews padding option ([228](https://github.com/holoviz/geoviews/pull/228))

Enhancements:

- Drop bokeh save tool when tile source is used ([257](https://github.com/holoviz/geoviews/pull/257))
- Compatibility with cartopy 0.17 ([254](https://github.com/holoviz/geoviews/pull/254))

Bug fixes:

- Improved handling of Point geometries in geopandas dataframe ([204](https://github.com/holoviz/geoviews/pull/204))
- Fixes for projecting draw tool data ([205](https://github.com/holoviz/geoviews/pull/205))
- Improvements and fixes for handling of QuadMesh projections ([250](https://github.com/holoviz/geoviews/pull/250))
- Fixes for Image longitude wrapping ([260](https://github.com/holoviz/geoviews/pull/260))

1.5.1

=============

This is a bug fix release which includes a number of important fixes and enhancements.

Enhancements:

- Geopandas interface now supports point geometries ([186](https://github.com/holoviz/geoviews/pull/186))
- Geopandas data now supported in the ``.to`` conversion API ([186](https://github.com/holoviz/geoviews/pull/186))

Fixes:

- Fixed some issues to do with tile source attributions ([176](https://github.com/holoviz/geoviews/pull/176))
- Fixed bug projecting rectilinear QuadMesh ([178](https://github.com/holoviz/geoviews/pull/178))
- Improvements to path/polygon projection and clipping ([179](https://github.com/holoviz/geoviews/pull/179))

1.5.0

=============

Major feature:

- The bokeh backend now supports arbitrary geographic projections, no longer just Web Mercator ([170](https://github.com/holoviz/geoviews/pull/170))

New components:

- Added [``Graph`` element](http://holoviews.org/reference/elements/bokeh/Graph.html) to plot networks of connected nodes ([#115](https://github.com/holoviz/geoviews/pull/115))

- Added [``TriMesh`` element](http://holoviews.org/reference/elements/bokeh/TriMesh.html) and datashading operation to plot small and large irregular triangular meshes ([#115](https://github.com/holoviz/geoviews/pull/115))

- Added [``QuadMesh`` element](http://holoviews.org/reference/elements/bokeh/QuadMesh.html) and datashading operation to plot small and large, irregular rectilinear and curvilinear meshes ([#116](https://github.com/holoviz/geoviews/pull/116))

- Added [``VectorField`` element](http://holoviews.org/reference/elements/bokeh/VectorField.html) and datashading operation to plot small and large quiver plots and other collections of vectors ([#122](https://github.com/holoviz/geoviews/pull/122))

- Added [``HexTiles`` element](http://holoviews.org/reference/elements/bokeh/HexTiles.html) to plot data binned into a hexagonal grid ([#147](https://github.com/holoviz/geoviews/pull/147))

- Added [``Labels`` element](http://holoviews.org/reference/elements/bokeh/Labels.html) to plot a large number of text labels at once (as data rather than as annotations) ([#147](https://github.com/holoviz/geoviews/pull/147))

New features:

- Hover tool now supports displaying geographic coordinates as longitude and latitude ([158](https://github.com/holoviz/geoviews/pull/158))

- Added a new ``geoviews.tile_sources`` module with a predefined set of tile sources ([165](https://github.com/holoviz/geoviews/pull/165))

- Wrapped the xESMF library as a regridding and interpolation operation for rectilinear and curvilinear grids ([127](https://github.com/holoviz/geoviews/pull/127))

- HoloViews operations including ``datashade`` and ``rasterize`` now retain geographic ``crs`` coordinate system ([118](https://github.com/holoviz/geoviews/pull/118))

Enhancements:

- Overhauled documentation and added a gallery ([121](https://github.com/holoviz/geoviews/pull/121))

Page 4 of 6

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.