Skip to content

Commit 01bdbd2

Browse files
authored
fix arrow + geodataframe example in README (#82)
just a little tweak to the example for converting items to geodataframe
1 parent f4390a9 commit 01bdbd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ items = await stacrs.search(
5555

5656
# If you installed with `pystac[arrow]`:
5757
from geopandas import GeoDataFrame
58-
table = await stacrs.search_to_arrow(...)
58+
59+
table = stacrs.to_arrow(items)
5960
data_frame = GeoDataFrame.from_arrow(table)
6061
items = stacrs.from_arrow(data_frame.to_arrow())
6162

0 commit comments

Comments
 (0)