From f2c91c14e651e918e8418fc79bb5b8e1a2a2f270 Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Wed, 9 May 2018 11:57:31 +0200 Subject: [PATCH] fix: typo --- helpers/geo_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/geo_helper.py b/helpers/geo_helper.py index f87dd25..9b8be6e 100644 --- a/helpers/geo_helper.py +++ b/helpers/geo_helper.py @@ -210,7 +210,7 @@ class Geo_helper: # adjust latitude and longitude to fit the limit, as specified # by EPSG:900913 / EPSG:3785 / OSGEO:41001 # coord_list = [lat, lon] - def coordinate_list_valid(coord_list): + def coordinate_list_valid(self, coord_list): lat = coord_list[0] lon = coord_list[1] if (-180 <= lon <= 180) and (-85.05112878 <= lat <= 85.05112878):