diff --git a/apps/project/custom_options.py b/apps/project/custom_options.py index ff405728..050176fd 100644 --- a/apps/project/custom_options.py +++ b/apps/project/custom_options.py @@ -39,10 +39,10 @@ class CustomOptionDefaults: }, { "title": "Offset", - "icon": IconEnum.ALERT_OUTLINE, + "icon": IconEnum.FLAG_OUTLINE, "value": 3, - "description": "", - "icon_color": "#9e9e9e", + "description": "building outline is correct, but not aligned to the imagery", + "icon_color": "#ff9800", }, ] diff --git a/project_types/validate/api_calls.py b/project_types/validate/api_calls.py index 0c5bebee..6b4f73c6 100644 --- a/project_types/validate/api_calls.py +++ b/project_types/validate/api_calls.py @@ -27,7 +27,7 @@ def remove_troublesome_chars(string: str | None): return string -def retry_get(url: str, retries: int | None = 3, timeout: int | None = 4, to_osmcha: bool = False): +def retry_get(url: str, retries: int | None = 3, timeout: int | None = 10, to_osmcha: bool = False): """Retry a query for a variable amount of tries.""" retry = Retry(total=retries) with requests.Session() as session: