From aa2db0fb7c098430aa71a13bb9cc5d46f6ce9c10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20G=C3=BCndling?= Date: Wed, 8 Apr 2026 21:19:02 +0200 Subject: [PATCH] Change drop_shapes default to True most shapes contained in datasets have very low quality or are also routed on OSM like we do it (no improvement) therefore the default should be not to use them and if we find a dataset with better quality shapes than those we automatically compute via map matching on OSM data, it should be easy to keep the original shapes --- src/metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/metadata.py b/src/metadata.py index ba1e6e021..5c3117911 100644 --- a/src/metadata.py +++ b/src/metadata.py @@ -50,7 +50,7 @@ class Source: skip_reason: str = "" function: Optional[str] = None drop_too_fast_trips: bool = True - drop_shapes: bool = False + drop_shapes: bool = True drop_agency_names: List[str] = [] keep_agency_names: List[str] = [] display_name_options: Optional[DisplayNameOptions] = None