Skip to content

Commit ba142d4

Browse files
authored
fixes #101 and #103
1 parent 5d2c666 commit ba142d4

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)