Fixed #28570 -- Dropped support for GEOS 3.3.x.
Removed setting SRID in GEOSGeometry.clone() which was only required in GEOS 3.3.0.
This commit is contained in:
parent
08654a99bb
commit
bd903e8a6e
|
@ -613,7 +613,7 @@ class GEOSGeometryBase(GEOSBase):
|
||||||
|
|
||||||
def clone(self):
|
def clone(self):
|
||||||
"Clone this Geometry."
|
"Clone this Geometry."
|
||||||
return GEOSGeometry(capi.geom_clone(self.ptr), srid=self.srid)
|
return GEOSGeometry(capi.geom_clone(self.ptr))
|
||||||
|
|
||||||
|
|
||||||
class LinearGeometryMixin:
|
class LinearGeometryMixin:
|
||||||
|
|
|
@ -8,7 +8,7 @@ geospatial libraries:
|
||||||
======================== ==================================== ================================ ===================================
|
======================== ==================================== ================================ ===================================
|
||||||
Program Description Required Supported Versions
|
Program Description Required Supported Versions
|
||||||
======================== ==================================== ================================ ===================================
|
======================== ==================================== ================================ ===================================
|
||||||
:doc:`GEOS <../geos>` Geometry Engine Open Source Yes 3.5, 3.4, 3.3
|
:doc:`GEOS <../geos>` Geometry Engine Open Source Yes 3.5, 3.4
|
||||||
`PROJ.4`_ Cartographic Projections library Yes (PostgreSQL and SQLite only) 4.9, 4.8, 4.7, 4.6, 4.5, 4.4
|
`PROJ.4`_ Cartographic Projections library Yes (PostgreSQL and SQLite only) 4.9, 4.8, 4.7, 4.6, 4.5, 4.4
|
||||||
:doc:`GDAL <../gdal>` Geospatial Data Abstraction Library Yes 2.2, 2.1, 2.0, 1.11, 1.10, 1.9
|
:doc:`GDAL <../gdal>` Geospatial Data Abstraction Library Yes 2.2, 2.1, 2.0, 1.11, 1.10, 1.9
|
||||||
:doc:`GeoIP <../geoip2>` IP-based geolocation library No 2
|
:doc:`GeoIP <../geoip2>` IP-based geolocation library No 2
|
||||||
|
@ -26,7 +26,6 @@ totally fine with GeoDjango. Your mileage may vary.
|
||||||
|
|
||||||
..
|
..
|
||||||
Libs release dates:
|
Libs release dates:
|
||||||
GEOS 3.3.0 2011-05-30
|
|
||||||
GEOS 3.4.0 2013-08-11
|
GEOS 3.4.0 2013-08-11
|
||||||
GEOS 3.5.0 2015-08-15
|
GEOS 3.5.0 2015-08-15
|
||||||
GDAL 1.9.0 2012-01-03
|
GDAL 1.9.0 2012-01-03
|
||||||
|
|
|
@ -628,6 +628,8 @@ Miscellaneous
|
||||||
* ``django.contrib.gis.gdal.OGRException`` is removed. It's been an alias for
|
* ``django.contrib.gis.gdal.OGRException`` is removed. It's been an alias for
|
||||||
``GDALException`` since Django 1.8.
|
``GDALException`` since Django 1.8.
|
||||||
|
|
||||||
|
* Support for GEOS 3.3.x is dropped.
|
||||||
|
|
||||||
.. _deprecated-features-2.0:
|
.. _deprecated-features-2.0:
|
||||||
|
|
||||||
Features deprecated in 2.0
|
Features deprecated in 2.0
|
||||||
|
|
Loading…
Reference in New Issue