bigframes.geopandas.GeoSeries.distance#

GeoSeries.distance(other: GeoSeries) Series[source]#

[Not Implemented] Use bigframes.bigquery.st_distance(series, other) instead to return the shorted distance between two GEOGRAPHY objects in meters.

In GeoPandas, this returns a Series of the distances between each aligned geometry in the expressed in the units of the CRS.

Parameters:

other – The Geoseries (elementwise) or geometric object to find the distance to.

Returns:

Series of float representing the distances.

Return type:

bigframes.pandas.Series

Raises:

NotImplementedError – GeoSeries.distance is not supported. Use bigframes.bigquery.st_distance(series, other), instead.