Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
utils.py
CHANGED
|
@@ -258,7 +258,7 @@ def bbox_from_point(lat, lon, radius_m=500):
|
|
| 258 |
|
| 259 |
def compute_features(lat,lon, radius=500):
|
| 260 |
|
| 261 |
-
BBOX = ",".join(bbox_from_point(lat,lon,radius))
|
| 262 |
|
| 263 |
print("BBOX",BBOX)
|
| 264 |
|
|
|
|
| 258 |
|
| 259 |
def compute_features(lat,lon, radius=500):
|
| 260 |
|
| 261 |
+
BBOX = ",".join([str(x) for x in bbox_from_point(lat,lon,radius)])
|
| 262 |
|
| 263 |
print("BBOX",BBOX)
|
| 264 |
|