diff options
Diffstat (limited to 'ishtar_common/models_imports.py')
-rw-r--r-- | ishtar_common/models_imports.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py index 259128b7a..63a5b92fc 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 @@ -1367,10 +1366,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 |