Skip to content

Commit 31446a6

Browse files
fix record_batch_reader params in geodataframe
1 parent 6ad71a1 commit 31446a6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

overturemaps/core.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,12 @@ def geodataframe(
143143
if not HAS_GEOPANDAS:
144144
raise ImportError("geopandas is required to use this function")
145145

146-
reader = record_batch_reader(overture_type, bbox, connect_timeout, request_timeout)
146+
reader = record_batch_reader(
147+
overture_type,
148+
bbox=bbox,
149+
connect_timeout=connect_timeout,
150+
request_timeout=request_timeout
151+
)
147152
return gpd.GeoDataFrame.from_arrow(reader)
148153

149154

0 commit comments

Comments
 (0)