bigframes.geopandas.GeoSeries.y#

property GeoSeries.y: Series#

Return the y location of point geometries in a GeoSeries

Examples:

>>> import bigframes.pandas as bpd
>>> import geopandas.array
>>> import shapely.geometry
>>> series = bpd.Series(
...     [shapely.geometry.Point(1, 2), shapely.geometry.Point(2, 3), shapely.geometry.Point(3, 4)],
...     dtype=geopandas.array.GeometryDtype()
... )
>>> series.geo.y
0    2.0
1    3.0
2    4.0
dtype: Float64
Returns:

Return the y location (latitude) of point geometries.

Return type:

bigframes.pandas.Series