Skip to content

Commit 0b1c8d1

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/main'
2 parents 37253a1 + bfbd5cd commit 0b1c8d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/segger/data/parquet/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def get_polygons_from_xy(
176176
# Convert to GeoSeries of polygons
177177
polygons = shapely.from_ragged_array(
178178
shapely.GeometryType.POLYGON,
179-
coords=boundaries[[x, y]],
179+
coords=boundaries[[x, y]].values.copy(order="C"),
180180
offsets=(geometry_offset, part_offset),
181181
)
182182
gs = gpd.GeoSeries(polygons, index=np.unique(ids))

0 commit comments

Comments
 (0)