From 8858cff9cfd61d5db4706ced07642b15c08e8ff7 Mon Sep 17 00:00:00 2001 From: moanos Date: Sun, 26 Jan 2025 17:05:51 +0100 Subject: [PATCH] fix: Construct necessary location string I'd be better to directly create a location here but I for now want to make as little modifications as possible --- src/fellchensammlung/animal_shelter.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/fellchensammlung/animal_shelter.py b/src/fellchensammlung/animal_shelter.py index f727dbb..74ba86c 100644 --- a/src/fellchensammlung/animal_shelter.py +++ b/src/fellchensammlung/animal_shelter.py @@ -25,10 +25,7 @@ def transform_osm_data(feature): "website": prop.get("website"), "opening_hours": prop.get("opening_hours"), "email": prop.get("email"), - "location": { - "type": geometry.get("type", "Point"), - "coordinates": geometry.get("coordinates", []) - }, + "location_string": f'{prop.get("addr:street", "")} {prop.get("addr:housenumber", "")} {prop.get("addr:postcode", "")} {prop.get("addr:city", "")}', "external_object_id": prop.get("@id"), "external_source_id": "OSM" }