Opened 7 years ago

Closed 7 years ago

#28570 closed Cleanup/optimization (fixed)

setting SRID in GEOSGeometry.clone() could be avoided for better performance on GEOS 3.3.1+

Reported by: Sergey Fedoseev Owned by: Sergey Fedoseev
Component: GIS Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

GEOS sets SRID when geometry is cloned since version 3.3.1 (https://trac.osgeo.org/geos/ticket/464).
I think that we could set minimum required version to 3.3.1 because even Debian oldoldstable has GEOS 3.3.3.

Change History (5)

comment:1 by Sergey Fedoseev, 7 years ago

Owner: changed from nobody to Sergey Fedoseev
Status: newassigned

comment:2 by Claude Paroz, 7 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Sergey Fedoseev, 7 years ago

comment:4 by Tim Graham, 7 years ago

Has patch: set
Triage Stage: AcceptedReady for checkin

I added documentation changes for dropping support for GEOS 3.3 to the pull request. It's more than 5 years old which is our rough policy for GEOS library support.

comment:5 by Tim Graham <timograham@…>, 7 years ago

Resolution: fixed
Status: assignedclosed

In bd903e8:

Fixed #28570 -- Dropped support for GEOS 3.3.x.

Removed setting SRID in GEOSGeometry.clone() which was only required
in GEOS 3.3.0.

Note: See TracTickets for help on using tickets.
Back to Top