bigframes.geopandas.GeoSeries.tolist#
- GeoSeries.tolist(*, allow_large_results: bool | None = None) list#
Return a list of the values.
These are each a scalar type, which is a Python scalar (for str, int, float) or a pandas scalar (for Timestamp/Timedelta/Interval/Period).
Examples:
>>> s = bpd.Series([1, 2, 3]) >>> s 0 1 1 2 2 3 dtype: Int64
>>> s.to_list() [1, 2, 3]