[geopandas] Add lz4 and zstd compression to to_parquet (#15195)

This commit is contained in:
John Hattas
2026-01-19 09:49:03 -06:00
committed by GitHub
parent cc24a838fc
commit 4992a813c1
+1 -1
View File
@@ -221,7 +221,7 @@ class GeoDataFrame(GeoPandasBase, pd.DataFrame): # type: ignore[misc]
self,
path: str | os.PathLike[str] | SupportsWrite[Incomplete],
index: bool | None = None,
compression: Literal["snappy", "gzip", "brotli"] | None = "snappy",
compression: Literal["snappy", "gzip", "brotli", "lz4", "zstd"] | None = "snappy",
geometry_encoding: _GeomEncoding = "WKB",
write_covering_bbox: bool = False,
schema_version: str | None = None,