Merge pull request #320 from geopython/bbox-data-types
make bbox inputs floats
This commit is contained in:
+1
-1
@@ -492,7 +492,7 @@ class API(object):
|
||||
except AttributeError:
|
||||
bbox = []
|
||||
try:
|
||||
[float(c) for c in bbox]
|
||||
bbox = [float(c) for c in bbox]
|
||||
except ValueError:
|
||||
exception = {
|
||||
'code': 'InvalidParameterValue',
|
||||
|
||||
Reference in New Issue
Block a user