We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0b149a commit 5cd6013Copy full SHA for 5cd6013
1 file changed
cf_xarray/geometry.py
@@ -583,7 +583,7 @@ def cf_to_polygons(ds: xr.Dataset):
583
584
# get items from polygons or multipolygons depending on number of parts
585
geoms = np.where(np.diff(offset3) == 1, polygons[offset3[:-1]], multipolygons)
586
-
+
587
return xr.DataArray(geoms, dims=node_count.dims, coords=node_count.coords)
588
589
@@ -597,7 +597,7 @@ def grid_to_polygons(ds: xr.Dataset) -> xr.DataArray:
597
----------
598
ds : xr.Dataset
599
Dataset with "latitude" and "longitude" variables as well as their bounds variables.
600
- 1D and 2D "latitude" and "longitude" variables are supported. 1D variables will
+ 1D and 2D "latitude" and "longitude" variables are supported. 1D variables will
601
be broadcast against each other.
602
603
Returns
0 commit comments