Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.

Commit 79857ae

Browse files
authored
fix typos
1 parent f679464 commit 79857ae

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

specs/2025-08-04-geoseries-scalars.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ Raster functions: Functions for analyzing geospatial rasters using geographies.
293293
coordinate system rather than meters that BigQuery uses, raise a
294294
`NotImplementedError` with a helpful message. Likewise, if a
295295
required parameter takes a value in terms of the coordinate
296-
system, but BigQuery uses meters, rais a `NotImplementedError`.
296+
system, but BigQuery uses meters, raise a `NotImplementedError`.
297297
- [ ] Otherwise, call `series._apply_unary_op` or `series._apply_binary_op`, passing the operation dataclass.
298298
- [ ] Add a comprehensive docstring with examples to the superclass in
299299
`third_party/bigframes_vendored/geopandas/geoseries.py`.

third_party/bigframes_vendored/geopandas/geoseries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,6 @@ def simplify(self, tolerance: float, preserve_topology: bool = True) -> bigframe
521521
522522
Raises:
523523
NotImplementedError:
524-
GeoSeries.area is not supported. Use bigframes.bigquery.st_area(series), instead.
524+
GeoSeries.simplify is not supported. Use bigframes.bigquery.st_simplify(series, tolerance_meters), instead.
525525
"""
526526
raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE)

0 commit comments

Comments
 (0)