@@ -18,6 +18,7 @@ class GeoSeries:
1818 >>> import bigframes.geopandas
1919 >>> import bigframes.pandas as bpd
2020 >>> from shapely.geometry import Point
21+ >>> bpd.options.display.progress_bar = None
2122
2223 >>> s = bigframes.geopandas.GeoSeries([Point(1, 1), Point(2, 2), Point(3, 3)])
2324 >>> s
@@ -72,6 +73,7 @@ def x(self) -> bigframes.series.Series:
7273 >>> import bigframes.pandas as bpd
7374 >>> import geopandas.array
7475 >>> import shapely.geometry
76+ >>> bpd.options.display.progress_bar = None
7577
7678 >>> series = bpd.Series(
7779 ... [shapely.geometry.Point(1, 2), shapely.geometry.Point(2, 3), shapely.geometry.Point(3, 4)],
@@ -98,6 +100,7 @@ def y(self) -> bigframes.series.Series:
98100 >>> import bigframes.pandas as bpd
99101 >>> import geopandas.array
100102 >>> import shapely.geometry
103+ >>> bpd.options.display.progress_bar = None
101104
102105 >>> series = bpd.Series(
103106 ... [shapely.geometry.Point(1, 2), shapely.geometry.Point(2, 3), shapely.geometry.Point(3, 4)],
@@ -126,6 +129,7 @@ def boundary(self) -> bigframes.geopandas.GeoSeries:
126129 >>> import bigframes.pandas as bpd
127130 >>> import geopandas.array
128131 >>> import shapely.geometry
132+ >>> bpd.options.display.progress_bar = None
129133
130134 >>> from shapely.geometry import Polygon, LineString, Point
131135 >>> s = geopandas.GeoSeries(
@@ -167,6 +171,7 @@ def from_xy(cls, x, y, index=None, **kwargs) -> bigframes.geopandas.GeoSeries:
167171
168172 >>> import bigframes.pandas as bpd
169173 >>> import bigframes.geopandas
174+ >>> bpd.options.display.progress_bar = None
170175
171176 >>> x = [2.5, 5, -3.0]
172177 >>> y = [0.5, 1, 1.5]
@@ -205,6 +210,7 @@ def from_wkt(cls, data, index=None) -> bigframes.geopandas.GeoSeries:
205210
206211 >>> import bigframes as bpd
207212 >>> import bigframes.geopandas
213+ >>> bpd.options.display.progress_bar = None
208214
209215 >>> wkts = [
210216 ... 'POINT (1 1)',
@@ -240,6 +246,7 @@ def to_wkt(self) -> bigframes.series.Series:
240246 >>> import bigframes as bpd
241247 >>> import bigframes.geopandas
242248 >>> from shapely.geometry import Point
249+ >>> bpd.options.display.progress_bar = None
243250
244251 >>> s = bigframes.geopandas.GeoSeries([Point(1, 1), Point(2, 2), Point(3, 3)])
245252 >>> s
@@ -272,6 +279,7 @@ def difference(self: GeoSeries, other: GeoSeries) -> GeoSeries: # type: ignore
272279 >>> import bigframes as bpd
273280 >>> import bigframes.geopandas
274281 >>> from shapely.geometry import Polygon, LineString, Point
282+ >>> bpd.options.display.progress_bar = None
275283
276284 We can check two GeoSeries against each other, row by row:
277285
@@ -403,6 +411,7 @@ def intersection(self: GeoSeries, other: GeoSeries) -> GeoSeries: # type: ignor
403411 >>> import bigframes as bpd
404412 >>> import bigframes.geopandas
405413 >>> from shapely.geometry import Polygon, LineString, Point
414+ >>> bpd.options.display.progress_bar = None
406415
407416 We can check two GeoSeries against each other, row by row.
408417
0 commit comments