diff options
-rw-r--r-- | ishtar_common/models_imports.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py index ec5b39c65..22890d484 100644 --- a/ishtar_common/models_imports.py +++ b/ishtar_common/models_imports.py @@ -1348,6 +1348,7 @@ def delayed_check(import_pk): def convert_geom(feature, srid): if not feature: return feature + srid = int(srid) geo_type = feature["type"] if geo_type in ("LineString", "Polygon"): feature["type"] = "Multi" + geo_type |