From 4bbef937437880e0658477eebc3471927f5606ae Mon Sep 17 00:00:00 2001 From: jialuo Date: Thu, 24 Apr 2025 19:17:29 +0000 Subject: [PATCH 1/2] fix: resolve the type in geo.py --- bigframes/bigquery/_operations/geo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigframes/bigquery/_operations/geo.py b/bigframes/bigquery/_operations/geo.py index 0856baabea..fc9bd1a653 100644 --- a/bigframes/bigquery/_operations/geo.py +++ b/bigframes/bigquery/_operations/geo.py @@ -264,7 +264,7 @@ def st_distance( A series containing geography objects. other (bigframes.pandas.Series | bigframes.geopandas.GeoSeries | shapely.Geometry): The series or geometric object to calculate the distance in meters - to from the geography objects in ``series``. + to form the geography objects in ``series``. use_spheroid (optional, default ``False``): Determines how this function measures distance. If ``use_spheroid`` is False, the function measures distance on the surface of a perfect From 07f9dcc0d2a71552d6ca1a3fb0c8b0ab198ae5a0 Mon Sep 17 00:00:00 2001 From: jialuo Date: Thu, 24 Apr 2025 21:06:09 +0000 Subject: [PATCH 2/2] fix --- bigframes/core/compile/googlesql/expression.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigframes/core/compile/googlesql/expression.py b/bigframes/core/compile/googlesql/expression.py index 20d6dbf9a1..581ab67718 100644 --- a/bigframes/core/compile/googlesql/expression.py +++ b/bigframes/core/compile/googlesql/expression.py @@ -25,7 +25,7 @@ * `expression`: Models basic SQL expressions. Extended classes (not part of standard GoogleSQL syntax, but added for convenience): -i + * `ColumnExpression`: Represents column references. * `TableExpression`: Represents table references. * `AliasExpression`: Represents aliased expressions.