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 28e4975 commit 2445eb7Copy full SHA for 2445eb7
pyproject.toml
@@ -36,7 +36,7 @@ dependencies = [
36
"ome_zarr>=0.12.2",
37
"pandas",
38
"pooch",
39
- "pyarrow<22.0.0", # https://github.com/scverse/spatialdata/issues/1000
+ "pyarrow",
40
"rich",
41
"setuptools",
42
"shapely>=2.0.1",
src/spatialdata/_io/io_points.py
@@ -80,7 +80,9 @@ def write_points(
80
c = c.cat.as_known()
81
points[column_name] = c
82
83
- points.to_parquet(path)
+ points_without_transform = points.copy()
84
+ del points_without_transform.attrs["transform"]
85
+ points_without_transform.to_parquet(path)
86
87
attrs = element_format.attrs_to_dict(points.attrs)
88
attrs["version"] = element_format.spatialdata_format_version
0 commit comments