We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d2c666 commit ba142d4Copy full SHA for ba142d4
src/segger/data/parquet/_utils.py
@@ -176,7 +176,7 @@ def get_polygons_from_xy(
176
# Convert to GeoSeries of polygons
177
polygons = shapely.from_ragged_array(
178
shapely.GeometryType.POLYGON,
179
- coords=boundaries[[x, y]],
+ coords=boundaries[[x, y]].values.copy(order="C"),
180
offsets=(geometry_offset, part_offset),
181
)
182
gs = gpd.GeoSeries(polygons, index=np.unique(ids))
0 commit comments