From 5249a8fc76a3777b5c65590b4bbd7deefb78767c Mon Sep 17 00:00:00 2001 From: Guille Date: Fri, 26 Jun 2020 14:42:52 -0400 Subject: [PATCH] change reverse_geocoder for openmaps api call --- city_model_structure/city.py | 1 - 1 file changed, 1 deletion(-) diff --git a/city_model_structure/city.py b/city_model_structure/city.py index 16691428..654428e5 100644 --- a/city_model_structure/city.py +++ b/city_model_structure/city.py @@ -42,7 +42,6 @@ class City: transformer = Transformer.from_crs(input_reference, gps) coordinates = transformer.transform(self.lower_corner[0], self.lower_corner[1]) self._location = GeometryHelper.get_location(coordinates[0], coordinates[1]) - # rg.search(coordinates) return self._location @property