Skip to content

Commit d520fd2

Browse files
authored
docs: fix geodataframe example (#1)
1 parent f4390a9 commit d520fd2

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)