-
Notifications
You must be signed in to change notification settings - Fork 442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add PolygonHull class #861
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
Signed-off-by: Martin Davis <[email protected]>
pramsey
added a commit
to libgeos/geos
that referenced
this pull request
May 8, 2022
Calculates a concave hull that respects the input polygon boundaries. Closes GH-603.
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Nov 24, 2023
Feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes `GEOSPolygonHullSimplify` method introducesd in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). Notes: - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Nov 24, 2023
Feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes `GEOSPolygonHullSimplify` method introducesd in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). Notes: - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Nov 24, 2023
Feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes `GEOSPolygonHullSimplify` method introducesd in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). Notes: - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Nov 24, 2023
The feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes the `GEOSPolygonHullSimplify` method introduced in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Nov 24, 2023
The feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes the `GEOSPolygonHullSimplify` method introduced in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Nov 24, 2023
The feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes the `GEOSPolygonHullSimplify` method introduced in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Nov 24, 2023
The feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes the `GEOSPolygonHullSimplify` method introduced in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Nov 24, 2023
The feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes the `GEOSPolygonHullSimplify` method introduced in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Nov 24, 2023
The feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes the `GEOSPolygonHullSimplify` method introduced in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
oleksii-leonov
added a commit
to syngenta/rgeo
that referenced
this pull request
Jan 6, 2024
The feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes the `GEOSPolygonHullSimplify` method introduced in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
BuonOmo
pushed a commit
to rgeo/rgeo
that referenced
this pull request
Jan 7, 2024
The feature is equal to [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.html) in PostGIS. > Computes a simplified topology-preserving outer or inner hull of a polygonal geometry. > An outer hull completely covers the input geometry. > An inner hull is completely covered by the input geometry. > The result is a polygonal geometry formed by a subset of the input vertices. > MultiPolygons and holes are handled and produce a result with the same structure as the input. > https://postgis.net/docs/ST_SimplifyPolygonHull.html Utilizes the `GEOSPolygonHullSimplify` method introduced in [GEOS 3.11.0](https://github.com/libgeos/geos/releases/tag/3.11.0). - libgeos/geos#603 - locationtech/jts#861 - libgeos/geos@1b3521c
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds the
PolygonHull
class to compute inner and outer concave hulls of polygonal geometry.