3.11.0 release

3.11
pramsey 2022-07-01 09:41:37 -07:00
parent 5c7b2b5c5e
commit 8e7559c2f4
4 changed files with 55 additions and 5 deletions

View File

@ -1,5 +1,5 @@
## Changes in 3.11.0rc0
2022-06-29
## Changes in 3.11.0
2022-07-01
- New things:
- OffsetCurve (GH-530, Paul Ramsey/Martin Davis)

View File

@ -5,7 +5,7 @@ GEOS_VERSION_MINOR=11
GEOS_VERSION_PATCH=0
# OPTIONS: "", "dev", "rc1" etc.
GEOS_PATCH_WORD=rc0
GEOS_PATCH_WORD=
# GEOS CAPI Versions
#

View File

@ -0,0 +1,50 @@
---
title: "Version 3.11.0"
type: posts
date: 2022-07-01T00:00:00
---
The 3.11.0 release of GEOS is now available [to download]({{< ref "/usage/download" >}}).
This release includes new features for building "concave hulls" for both point and polygon input. For polygon input, the hull will be guaranteed to not cross into the interiors of the input polygons.
The line merger has been enhanced to support a mode that only merges lines which share orientation.
The offset curve algorithm has been updated to be more reliable for different kinds of semi-degenerate inputs, and may output different curves than the previous implementation, for those kinds of inputs. For "normal" inputs, the results should look very much like the old implementation.
As usual, numerous bugs have been fixed, and a few performance improvements discovered and implemented.
### New Things
* OffsetCurve ([GH-530](https://github.com/libgeos/geos/issues/530), Paul Ramsey/Martin Davis)
* ConcaveHull ([GH-549](https://github.com/libgeos/geos/issues/549), Paul Ramsey/Martin Davis)
* PolygonHull ([GH-603](https://github.com/libgeos/geos/issues/603), Paul Ramsey/Martin Davis)
* LineMerger directed option ([GH-597](https://github.com/libgeos/geos/issues/597), Sergei Sh)
* CAPI: GEOSHilbertCode ([GH-556](https://github.com/libgeos/geos/issues/556), Brendan Ward)
* CAPI: GEOSGeom_createRectangle ([GH-558](https://github.com/libgeos/geos/issues/558), Brendan Ward)
* CAPI: GEOSGeom_transformXY ([GH-563](https://github.com/libgeos/geos/issues/563), Dan Baston/Brendan Ward)
* CAPI: GEOSRemoveRepeatedPoints ([GH-599](https://github.com/libgeos/geos/issues/599), Paul Ramsey)
* CAPI: GEOSLineMergeDirected ([GH-597](https://github.com/libgeos/geos/issues/597), Sergei Sh)
* CAPI: setFixStructure for WKB/WKT readers to automatically repair
structural errors in the input ([GH-639](https://github.com/libgeos/geos/issues/639), Paul Ramsey)
### Fixes & Improvements
* Fix unaryUnion to avoid segfault with empty polygon ([GH-501](https://github.com/libgeos/geos/issues/501), Mike Taves)
* Fix SnapRoundingNoder to use tolerance in noding; also fixes GeometryPrecisionReducer ([GH-504](https://github.com/libgeos/geos/issues/504), Sergei Sh)
* Allow direct setting of grid size ([GH-513](https://github.com/libgeos/geos/issues/513), Martin Davis)
* Allow GEOS to be used as a CMake subproject ([GH-518](https://github.com/libgeos/geos/issues/518), Robert Coup)
* Remove .inl inline files in favour of header declaration ([GH-543](https://github.com/libgeos/geos/issues/543), Paul Ramsey)
* Add SnappingNoder seeding (Martin Davis)
* Add OverlayNG area check heuristic ([JTS-812](https://github.com/locationtech/jts/issues/812), Paul Ramsey)
* Fix RelateOp (and intersects predicate) for lines with intersections very near boundary ([GH-570](https://github.com/libgeos/geos/issues/570), Martin Davis)
* Fix IsValidOp to handle repeated node points ([JTS-845](https://github.com/locationtech/jts/issues/845), Martin Davis)
* Fix IsSimpleOp to handle closed LineStrings with repeated endpoints ([JTS-851](https://github.com/locationtech/jts/issues/851), Martin Davis)
* Fix LengthIndexedLine (via LengthLocationMap fix) ([JTS-859](https://github.com/locationtech/jts/issues/859), Martin Davis)
* Fix PolygonHoleJoiner ([JTS-862](https://github.com/locationtech/jts/issues/862), Martin Davis)
* Improve `test_geos_unit` application error checking and reporting
* Fix MinimumDiameter getMinimumRectangle for flat input ([JTS-875](https://github.com/locationtech/jts/issues/875), Martin Davis)
* Fix BufferOp inverted ring check ([JTS-878](https://github.com/locationtech/jts/issues/878), Martin Davis)
* Fix OverlayNG geomunion to avoid lines in result (Martin Davis)

View File

@ -9,8 +9,8 @@ draft: false
| Release Date | Release | Download Link | Changes |
| ------------ | ------- | ------------- | ------- |
| 2022/06/29 | **3.11.0rc0** | [geos-3.11.0rc0.tar.bz2](https://download.osgeo.org/geos/geos-3.11.0rc0.tar.bz2) | [Changes](https://github.com/libgeos/geos/blob/3.11.0rc0/NEWS.md) |
| 2022/06/03 | **{{<current_release>}}** | [geos-{{<current_release>}}.tar.bz2](https://download.osgeo.org/geos/geos-{{<current_release>}}.tar.bz2) | [Changes](https://github.com/libgeos/geos/blob/{{<current_release>}}/NEWS)
| 2022/07/01 | **3.11.0** | [geos-3.11.0.tar.bz2](https://download.osgeo.org/geos/geos-3.11.0.tar.bz2) | [Changes](https://github.com/libgeos/geos/blob/3.11.0/NEWS.md) |
| 2022/06/03 | **3.10.3** | [geos-3.10.3.tar.bz2](https://download.osgeo.org/geos/geos-3.10.3.tar.bz2) | [Changes](https://github.com/libgeos/geos/blob/3.10.3/NEWS)
| 2022/06/02 | **3.9.3** | [geos-3.9.3.tar.bz2](https://download.osgeo.org/geos/geos-3.9.3.tar.bz2) | [Changes](https://github.com/libgeos/geos/blob/3.9.3/NEWS) |
| 2022/06/02 | **3.8.3** | [geos-3.8.3.tar.bz2](https://download.osgeo.org/geos/geos-3.8.3.tar.bz2) | [Changes](https://github.com/libgeos/geos/blob/3.8.3/NEWS) |
| 2022/06/08 | **3.7.5** | [geos-3.7.5.tar.bz2](https://download.osgeo.org/geos/geos-3.7.5.tar.bz2) | [Changes](https://github.com/libgeos/geos/blob/3.7.5/NEWS) |