All Versions
23
Latest Version
Avg Release Cycle
106 days
Latest Release
1554 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v0.6 Changes
January 31, 2020๐ Highlights of this release:
- โ Addition of the STRtree class for spatial indexing (#58)
- โ Addition of a
bounds
function (#69) - A new
from_shapely
function to convert Shapely geometries to pygeos.Geometry (#61) - Reintroduction of the
shared_paths
function (#77)
Contributors:
- Casper van der Wel
- Joris Van den Bossche
- mattijn +
-
v0.5 Changes
October 25, 2019๐ Highlights of this release:
- ๐ Moved to the pygeos GitHub organization.
- โ Addition of functionality to get and transform all coordinates (eg for reprojections or affine transformations) [#44]
- Ufuncs for converting to and from the WKT and WKB formats [#45]
equals_exact
has been added [PR #57]
-
v0.4 Changes
September 16, 2019๐ This is a major release of PyGEOS and the first one with actual release notes. Most important features of this release are:
buffer
andhaussdorff_distance
were completed [#15]voronoi_polygons
anddelaunay_triangles
have been added [#17]- ๐ The PyGEOS documentation is now mostly complete and available on http://pygeos.readthedocs.io .
- ๐ The concepts of "empty" and "missing" geometries have been separated. The
pygeos.Empty
andpygeos.NaG
objects has been removed. Empty geometries are handled the same as normal geometries. Missing geometries are denoted byNone
and are handled by every pygeos function.NaN
values cannot be used anymore to denote missing geometries. [PR #36] - ๐ Added
pygeos.__version__
andpygeos.geos_version
. [PR #43]