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 twoGEOGRAPHYobjects 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:
- Raises:
NotImplementedError – GeoSeries.distance is not supported. Use
bigframes.bigquery.st_distance(series, other), instead.