We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad71a1 commit 31446a6Copy full SHA for 31446a6
overturemaps/core.py
@@ -143,7 +143,12 @@ def geodataframe(
143
if not HAS_GEOPANDAS:
144
raise ImportError("geopandas is required to use this function")
145
146
- reader = record_batch_reader(overture_type, bbox, connect_timeout, request_timeout)
+ reader = record_batch_reader(
147
+ overture_type,
148
+ bbox=bbox,
149
+ connect_timeout=connect_timeout,
150
+ request_timeout=request_timeout
151
+ )
152
return gpd.GeoDataFrame.from_arrow(reader)
153
154
0 commit comments