From 3faef6f285f7e06ffe0a834da278bb209ee7bd21 Mon Sep 17 00:00:00 2001 From: ZoutigeWolf Date: Mon, 4 Nov 2024 10:43:05 +0100 Subject: [PATCH] Fix stop location --- models/GTFS/stop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/GTFS/stop.py b/models/GTFS/stop.py index 53ed53f..288753c 100644 --- a/models/GTFS/stop.py +++ b/models/GTFS/stop.py @@ -30,7 +30,7 @@ def parse(cls, **kwargs) -> "StopGTFS": id = kwargs["stop_id"], code = kwargs["stop_code"], name = kwargs["stop_name"], - location = WKTElement(f"POINT({kwargs['stop_lat']}, {kwargs['stop_lon']})", srid=4326), # type: ignore + location = WKTElement(f"POINT({kwargs['stop_lat']} {kwargs['stop_lon']})", srid=4326), # type: ignore type = kwargs["location_type"] and LocationType(int(kwargs["location_type"])), parent_id = kwargs["parent_station"], timezone = kwargs["stop_timezone"],