Skip to content

Commit

Permalink
#168 bounding box straat float
Browse files Browse the repository at this point in the history
  • Loading branch information
vancamti committed Nov 17, 2021
1 parent 7647e75 commit af9cd23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crabpy/gateway/crab.py
Original file line number Diff line number Diff line change
Expand Up @@ -2076,8 +2076,8 @@ def bounding_box(self):
list = a.split(',')
for z in list:
temp = z.split()
x.append(temp[0])
y.append(temp[1])
x.append(float(temp[0]))
y.append(float(temp[1]))
return [min(x), min(y), max(x), max(y)]

def __unicode__(self):
Expand Down

0 comments on commit af9cd23

Please sign in to comment.