Skip to content

Commit

Permalink
Merge pull request #169 from OnroerendErfgoed/bugfix/168_bounding_box…
Browse files Browse the repository at this point in the history
…_straat_floats

#168 bounding box straat float
  • Loading branch information
vancamti authored Nov 17, 2021
2 parents 7647e75 + af9cd23 commit ea36fbd
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 ea36fbd

Please sign in to comment.