Skip to content

Commit

Permalink
chore: fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Sep 12, 2024
1 parent acefc9c commit e10b105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/posts/ibis-duckdb-geospatial-dev-guru/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ The following query shows all the bike trips whose pickup point falls within a
first_point = biketrip.limit(1)
trips_within_500 = biketrip.filter(
_.pickup_point.within(first_point.select(_.pickup_point.buffer(500)).to_array())
_.pickup_point.within(first_point.select(_.pickup_point.buffer(500)).as_scalar())
)
trips_within_500
Expand Down

0 comments on commit e10b105

Please sign in to comment.