Merge pull request '# HOTFIX' (#473) from hotfix into master

Reviewed-on: #473
This commit is contained in:
mpeltriaux 2025-03-28 16:41:08 +01:00
commit 6fe67a8fbf

View File

@ -11,6 +11,7 @@ from json import JSONDecodeError
import requests import requests
from konova.sub_settings import schneider_settings from konova.sub_settings import schneider_settings
from konova.sub_settings.lanis_settings import DEFAULT_SRID
from konova.sub_settings.proxy_settings import PROXIES from konova.sub_settings.proxy_settings import PROXIES
@ -34,6 +35,7 @@ class ParcelFetcher:
if geom.area < buffer_threshold: if geom.area < buffer_threshold:
# Fallback for malicious geometries which are way too small and would disappear on negative buffering # Fallback for malicious geometries which are way too small and would disappear on negative buffering
geom = geometry.geom geom = geometry.geom
geom.transform(DEFAULT_SRID)
self.geojson = geom.ewkt self.geojson = geom.ewkt
self.results = [] self.results = []