Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,11 @@ Options:
resolution. Default (1) applies no
upscaling. The resampling method controls
interpolation. [default: 1]
-c, --compression [snappy|gzip|zstd]
Name of the compression to use when writing
to Parquet. [default: snappy]
-c, --compression TEXT Compression method to use for the output
Parquet files. Options include 'snappy',
'gzip', 'brotli', 'lz4', 'zstd', etc. Use
'none' for no compression. [default:
snappy]
-t, --threads INTEGER Number of threads to use when running in
parallel. The default is determined based
dynamically as the total number of available
Expand Down
2 changes: 1 addition & 1 deletion raster2dggs/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.3.0"
__version__: str = "0.3.0"
4 changes: 2 additions & 2 deletions raster2dggs/geohash.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ def _geohash_parent_groupby(
"-c",
"--compression",
default=const.DEFAULTS["compression"],
type=click.Choice(["snappy", "gzip", "zstd"]),
help="Name of the compression to use when writing to Parquet.",
type=str,
help="Compression method to use for the output Parquet files. Options include 'snappy', 'gzip', 'brotli', 'lz4', 'zstd', etc. Use 'none' for no compression.",
)
@click.option(
"-t",
Expand Down
4 changes: 2 additions & 2 deletions raster2dggs/h3.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def _h3_parent_groupby(
"-c",
"--compression",
default=const.DEFAULTS["compression"],
type=click.Choice(["snappy", "gzip", "zstd"]),
help="Name of the compression to use when writing to Parquet.",
type=str,
help="Compression method to use for the output Parquet files. Options include 'snappy', 'gzip', 'brotli', 'lz4', 'zstd', etc. Use 'none' for no compression.",
)
@click.option(
"-t",
Expand Down
4 changes: 2 additions & 2 deletions raster2dggs/maidenhead.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ def _maidenhead_parent_groupby(
"-c",
"--compression",
default=const.DEFAULTS["compression"],
type=click.Choice(["snappy", "gzip", "zstd"]),
help="Name of the compression to use when writing to Parquet.",
type=str,
help="Compression method to use for the output Parquet files. Options include 'snappy', 'gzip', 'brotli', 'lz4', 'zstd', etc. Use 'none' for no compression.",
)
@click.option(
"-t",
Expand Down
4 changes: 2 additions & 2 deletions raster2dggs/rHP.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ def _rhp_parent_groupby(
"-c",
"--compression",
default=const.DEFAULTS["compression"],
type=click.Choice(["snappy", "gzip", "zstd"]),
help="Name of the compression to use when writing to Parquet.",
type=str,
help="Compression method to use for the output Parquet files. Options include 'snappy', 'gzip', 'brotli', 'lz4', 'zstd', etc. Use 'none' for no compression.",
)
@click.option(
"-t",
Expand Down
4 changes: 2 additions & 2 deletions raster2dggs/s2.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def _s2_parent_groupby(
"-c",
"--compression",
default=const.DEFAULTS["compression"],
type=click.Choice(["snappy", "gzip", "zstd"]),
help="Name of the compression to use when writing to Parquet.",
type=str,
help="Compression method to use for the output Parquet files. Options include 'snappy', 'gzip', 'brotli', 'lz4', 'zstd', etc. Use 'none' for no compression.",
)
@click.option(
"-t",
Expand Down