bigframes.geopandas.GeoSeries.is_closed#
- property GeoSeries.is_closed: Series#
[Not Implemented] Use
bigframes.bigquery.st_isclosed(series)instead to return a boolean indicating if a shape is closed.In GeoPandas, this returns a Series of booleans with value True if a LineString’s or LinearRing’s first and last points are equal.
Returns False for any other geometry type.
- Returns:
Series of booleans.
- Return type:
- Raises:
NotImplementedError – GeoSeries.is_closed is not supported. Use
bigframes.bigquery.st_isclosed(series), instead.