Fixed #25876 -- Removed OGRGeometry.transform_to() backwards-compatibility method.
This commit is contained in:
parent
0f2c2c104b
commit
a8614fb438
|
@ -24,7 +24,7 @@
|
||||||
WGS 84
|
WGS 84
|
||||||
>>> print(mpnt.srs.proj)
|
>>> print(mpnt.srs.proj)
|
||||||
+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs
|
+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs
|
||||||
>>> mpnt.transform_to(SpatialReference('NAD27'))
|
>>> mpnt.transform(SpatialReference('NAD27'))
|
||||||
>>> print(mpnt.proj)
|
>>> print(mpnt.proj)
|
||||||
+proj=longlat +ellps=clrk66 +datum=NAD27 +no_defs
|
+proj=longlat +ellps=clrk66 +datum=NAD27 +no_defs
|
||||||
>>> print(mpnt)
|
>>> print(mpnt)
|
||||||
|
@ -397,10 +397,6 @@ class OGRGeometry(GDALBase):
|
||||||
raise TypeError('Transform only accepts CoordTransform, '
|
raise TypeError('Transform only accepts CoordTransform, '
|
||||||
'SpatialReference, string, and integer objects.')
|
'SpatialReference, string, and integer objects.')
|
||||||
|
|
||||||
def transform_to(self, srs):
|
|
||||||
"For backwards-compatibility."
|
|
||||||
self.transform(srs)
|
|
||||||
|
|
||||||
# #### Topology Methods ####
|
# #### Topology Methods ####
|
||||||
def _topology(self, func, other):
|
def _topology(self, func, other):
|
||||||
"""A generalized function for topology operations, takes a GDAL function and
|
"""A generalized function for topology operations, takes a GDAL function and
|
||||||
|
|
Loading…
Reference in New Issue