Removed unused wk_col property of SpatialRefSys models.
Unused since ae7cb577dd
.
This commit is contained in:
parent
de40cfbe74
commit
74675a15d0
|
@ -65,7 +65,3 @@ class OracleSpatialRefSys(models.Model, SpatialRefSysMixin):
|
||||||
@property
|
@property
|
||||||
def wkt(self):
|
def wkt(self):
|
||||||
return self.wktext
|
return self.wktext
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def wkt_col(cls):
|
|
||||||
return 'wktext'
|
|
||||||
|
|
|
@ -67,7 +67,3 @@ class PostGISSpatialRefSys(models.Model, SpatialRefSysMixin):
|
||||||
@property
|
@property
|
||||||
def wkt(self):
|
def wkt(self):
|
||||||
return self.srtext
|
return self.srtext
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def wkt_col(cls):
|
|
||||||
return 'srtext'
|
|
||||||
|
|
Loading…
Reference in New Issue