|
19 | 19 | import shapely # type: ignore |
20 | 20 |
|
21 | 21 | from bigframes import operations as ops |
22 | | -from bigframes.core import log_adapter |
23 | 22 | import bigframes.geopandas |
24 | 23 | import bigframes.series |
25 | 24 |
|
|
29 | 28 | """ |
30 | 29 |
|
31 | 30 |
|
32 | | -@log_adapter.method_logger |
33 | 31 | def st_area( |
34 | 32 | series: Union[bigframes.series.Series, bigframes.geopandas.GeoSeries], |
35 | 33 | ) -> bigframes.series.Series: |
@@ -105,7 +103,6 @@ def st_area( |
105 | 103 | return series |
106 | 104 |
|
107 | 105 |
|
108 | | -@log_adapter.method_logger |
109 | 106 | def st_buffer( |
110 | 107 | series: Union[bigframes.series.Series, bigframes.geopandas.GeoSeries], |
111 | 108 | buffer_radius: float, |
@@ -175,7 +172,6 @@ def st_buffer( |
175 | 172 | return series |
176 | 173 |
|
177 | 174 |
|
178 | | -@log_adapter.method_logger |
179 | 175 | def st_centroid( |
180 | 176 | series: Union[bigframes.series.Series, bigframes.geopandas.GeoSeries], |
181 | 177 | ) -> bigframes.series.Series: |
@@ -233,7 +229,6 @@ def st_centroid( |
233 | 229 | return series |
234 | 230 |
|
235 | 231 |
|
236 | | -@log_adapter.method_logger |
237 | 232 | def st_convexhull( |
238 | 233 | series: Union[bigframes.series.Series, bigframes.geopandas.GeoSeries], |
239 | 234 | ) -> bigframes.series.Series: |
@@ -289,7 +284,6 @@ def st_convexhull( |
289 | 284 | return series |
290 | 285 |
|
291 | 286 |
|
292 | | -@log_adapter.method_logger |
293 | 287 | def st_difference( |
294 | 288 | series: Union[bigframes.series.Series, bigframes.geopandas.GeoSeries], |
295 | 289 | other: Union[ |
@@ -393,7 +387,6 @@ def st_difference( |
393 | 387 | return series._apply_binary_op(other, ops.geo_st_difference_op) |
394 | 388 |
|
395 | 389 |
|
396 | | -@log_adapter.method_logger |
397 | 390 | def st_distance( |
398 | 391 | series: Union[bigframes.series.Series, bigframes.geopandas.GeoSeries], |
399 | 392 | other: Union[ |
@@ -471,7 +464,6 @@ def st_distance( |
471 | 464 | ) |
472 | 465 |
|
473 | 466 |
|
474 | | -@log_adapter.method_logger |
475 | 467 | def st_intersection( |
476 | 468 | series: Union[bigframes.series.Series, bigframes.geopandas.GeoSeries], |
477 | 469 | other: Union[ |
@@ -571,7 +563,6 @@ def st_intersection( |
571 | 563 | return series._apply_binary_op(other, ops.geo_st_intersection_op) |
572 | 564 |
|
573 | 565 |
|
574 | | -@log_adapter.method_logger |
575 | 566 | def st_isclosed( |
576 | 567 | series: Union[bigframes.series.Series, bigframes.geopandas.GeoSeries], |
577 | 568 | ) -> bigframes.series.Series: |
@@ -632,7 +623,6 @@ def st_isclosed( |
632 | 623 | return series |
633 | 624 |
|
634 | 625 |
|
635 | | -@log_adapter.method_logger |
636 | 626 | def st_length( |
637 | 627 | series: Union[bigframes.series.Series, bigframes.geopandas.GeoSeries], |
638 | 628 | *, |
|
0 commit comments