summaryrefslogtreecommitdiff
path: root/ishtar_common/models_imports.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models_imports.py')
-rw-r--r--ishtar_common/models_imports.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py
index 273b0eab5..99d7e9fd6 100644
--- a/ishtar_common/models_imports.py
+++ b/ishtar_common/models_imports.py
@@ -79,7 +79,6 @@ from ishtar_common.utils import (
num2col,
put_session_message,
put_session_var,
- reverse_coordinates,
update_data,
OwnPerms,
SheetItem,
@@ -1373,10 +1372,6 @@ def convert_geom(feature, srid):
srs = 4326 if not has_z else 4979
if profile.srs and profile.srs.srid:
srs = profile.srs.srid
- if srs != srid:
- # Coordinates are reversed - should be fixed on Django 3.2
- feature = reverse_coordinates(
- GEOSGeometry(feature).transform(srs, clone=True).ewkt)
return feature