bigframes.geopandas.GeoSeries.area#
- property GeoSeries.area: Series#
[Not Implemented] Use
bigframes.bigquery.st_area(series), instead to return the area in square meters.In GeoPandas, this returns a Series containing the area of each geometry in the GeoSeries expressed in the units of the CRS.
- Parameters:
crs (optional) – Coordinate Reference System of the geometry objects. Can be anything accepted by pyproj.CRS.from_user_input(), such as an authority string (eg “EPSG:4326”) or a WKT string.
- Returns:
Series of float representing the areas.
- Return type:
- Raises:
NotImplementedError – GeoSeries.area is not supported. Use bigframes.bigquery.st_area(series), instead.